-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 911 Bytes
/
package.json
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
{
"name": "todo-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 7040",
"build": "next build",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml}\" --ignore-path .gitignore",
"start": "next start",
"lint": "next lint",
"test": "playwright test"
},
"dependencies": {
"@next/env": "^12.1.0",
"immutability-helper": "^3.1.1",
"next": "12.1.0",
"react": "17.0.2",
"react-dnd": "^15.1.1",
"react-dnd-html5-backend": "^15.1.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@playwright/test": "^1.20.0",
"@svgr/webpack": "^6.2.1",
"@types/node": "^17.0.21",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"eslint": "8.11.0",
"eslint-config-next": "12.1.0",
"typescript": "^4.6.2"
},
"volta": {
"node": "16.13.0",
"npm": "8.1.3"
}
}