-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.93 KB
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
59
{
"name": "react-interview-starter-ts",
"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,ts,tsx}",
"!src/index.tsx",
"!src/serviceWorker.ts"
]
},
"dependencies": {
"@testing-library/jest-dom": "5.15.0",
"@testing-library/react": "12.1.2",
"@types/jest": "27.0.2",
"@types/node": "16.11.6",
"@types/react": "17.0.34",
"@types/react-dom": "17.0.11",
"@types/react-router-dom": "5.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "5.3.0",
"react-scripts": "4.0.3",
"react-test-renderer": "17.0.2",
"typescript": "4.4.4"
},
"devDependencies": {
"@types/testing-library__jest-dom": "5.14.1",
"cross-env": "7.0.3",
"@types/testing-library__jest-dom": "5.14.1",
"http-server": "14.0.0",
"wait-on": "6.0.0"
}
}