forked from khaledosman/react-redux-realworld-example-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
56
57
58
{
"name": "react-redux-realworld-example-app",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@cypress/code-coverage": "^3.9.6",
"@cypress/instrument-cra": "^1.4.0",
"@testing-library/cypress": "^7.0.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"cross-env": "^7.0.3",
"react-scripts": "^5.0.1",
"redux-devtools-extension": "^2.13.9",
"cypress": "^7.5.0",
"faker": "^5.5.3",
"husky": "^7.0.0",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^2.6.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"redux-testkit": "^1.0.6",
"start-server-and-test": "^1.12.5"
},
"dependencies": {
"@reduxjs/toolkit": "^1.6.0",
"marked": "^4.0.14",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^7.2.8",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"superagent": "^7.1.1",
"superagent-promise": "^1.1.0",
"snarkdown": "^2.0.0",
"xss": "^1.0.9"
},
"scripts": {
"start": "cross-env PORT=4100 react-scripts start",
"start:e2e": "cross-env PORT=4100 BROWSER=none react-scripts -r @cypress/instrument-cra start",
"build": "react-scripts build",
"test": "cross-env PORT=4100 react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-test start:e2e :4100 cy:run",
"prepare": "husky install"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}