-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.66 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
{
"name": "react-interview-starter-js",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "react-scripts build",
"coverage": "cross-env NODE_ICU_DATA=node_modules/full-icu react-scripts test --coverage --watchAll=false",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu react-scripts test",
"serve": "./node_modules/.bin/http-server ./build --port 1337",
"e2e:open": "cd e2e && ./node_modules/.bin/cypress open; cd ..",
"e2e:run:firefox": "cd e2e && ./node_modules/.bin/cypress run --browser firefox && cd ..",
"e2e:run:chrome": "cd e2e && ./node_modules/.bin/cypress run --browser chrome && cd ..",
"e2e:wait-and-run:firefox": "./node_modules/.bin/wait-on http://localhost:1337/ && npm run e2e:run:firefox",
"e2e:wait-and-run:chrome": "./node_modules/.bin/wait-on http://localhost:1337/ && npm run e2e:run:chrome"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/index.tsx",
"!src/serviceWorker.ts"
]
},
"dependencies": {
"@testing-library/jest-dom": "5.15.0",
"@testing-library/react": "12.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "5.3.0",
"react-scripts": "^5.0.0",
"react-test-renderer": "17.0.2"
},
"devDependencies": {
"cross-env": "7.0.3",
"full-icu": "1.4.0",
"http-server": "14.0.0",
"wait-on": "6.0.0"
}
}