forked from sonicoder86/todomvc-react
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 963 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 963 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
30
31
32
33
34
35
{
"name": "todoapp-react",
"dependencies": {
"@testing-library/jest-dom": "^5.1.0",
"@testing-library/react": "^9.4.0",
"classnames": "^2.2.6",
"cypress": "^4.0.1",
"jest-extended": "^0.11.5",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-scripts": "3.3.1",
"redux": "^4.0.5",
"start-server-and-test": "^1.10.8",
"todomvc-app-css": "^2.3.0",
"uuid": "^3.4.0"
},
"scripts": {
"start": "PORT=9200 BROWSER=none react-scripts start",
"build": "react-scripts build",
"test": "npm run test:unit",
"test:unit": "react-scripts test --watchAll=false",
"test:e2e": "start-server-and-test start http://localhost:9300 cypress",
"cypress": "cypress run",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version"
]
}