-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 995 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 3001",
"build": "next build",
"start": "next start -p 3001",
"lint": "next lint",
"test": "jest --watch",
"cypress": "cypress open --project __e2e__",
"start-server": "yarn run build && yarn run start",
"test:e2e": "start-server-and-test start-server http://localhost:3001 cypress"
},
"dependencies": {
"classnames": "^2.3.1",
"framer-motion": "^4.1.17",
"next": "11.1.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.38.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"babel-jest": "^27.1.0",
"cypress": "^8.3.1",
"eslint": "7.32.0",
"eslint-config-next": "11.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.1.0",
"jest-fetch-mock": "^3.0.3",
"react-test-renderer": "^17.0.2",
"start-server-and-test": "^1.13.1"
}
}