-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "todo3",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3500",
"build": "next build && next export -o docs && touch docs/.nojekyll",
"pub": "npm run build && git add . && git commit -m \"Publish\"",
"start": "next start",
"ts:watch": "tsc --watch --pretty",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"lint": "next lint"
},
"dependencies": {
"@types/lodash": "^4.14.180",
"@types/uuid": "^8.3.4",
"classnames": "^2.3.1",
"drag-drop-touch": "^1.3.1",
"immer": "^9.0.12",
"lodash": "^4.17.21",
"next": "12.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"uuid": "^8.3.2",
"zustand": "^3.7.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.3",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"autoprefixer": "^10.4.4",
"eslint": "8.12.0",
"eslint-config-next": "12.1.2",
"jest": "^27.5.1",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23",
"typescript": "4.6.3"
}
}