-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "todomvc-react",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/blacksonic/todomvc-react.git"
},
"scripts": {
"start": "PORT=9300 BROWSER=none react-scripts start",
"build": "CI=false react-scripts build",
"format": "prettier --write 'src/**/*.{js,jsx}'",
"lint": "eslint 'src/**/*.{js,jsx}'",
"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"
},
"dependencies": {
"classnames": "^2.3.1",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^8.0.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"redux": "^4.1.2",
"todomvc-app-css": "^2.4.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/runtime": "^7.17.9",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"cypress": "^9.5.4",
"eslint": "^8.13.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"jest-extended": "^2.0.0",
"prettier": "^2.6.2",
"react-scripts": "^5.0.1",
"start-server-and-test": "^1.14.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version"
]
}