-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 764 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "priority-table",
"version": "0.1.0",
"homepage": "https://cronon.github.io/priority-table",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export && touch out/.nojekyll",
"start": "next start",
"lint": "next lint",
"deploy": "npm run build && npm run export && gh-pages -d out --dotfiles=true"
},
"dependencies": {
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/sortable": "^7.0.1",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"eslint": "8.26.0",
"eslint-config-next": "12.3.1",
"gh-pages": "^4.0.0",
"typescript": "4.8.4"
}
}