-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.47 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
{
"name": "frontend-testing-on-steroids",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "npm run start:server & npm run start:front-end",
"build": "react-scripts build",
"test": "npx start-server-and-test start:server :3001 cy:start:front-end",
"eject": "react-scripts eject",
"// SERVER /////////": "",
"start:front-end": "react-scripts start",
"start:server": "nodemon server/index.js",
"// CYPRESS /////////": "",
"cy:start:front-end": "npx start-server-and-test start:front-end :3000 cy:test",
"cy:open": "cypress open",
"cy:test": "cypress run",
"cy:test:integration": "cypress run --spec \"cypress/**/*.integration.*\"",
"cy:test:e2e": "cypress run --spec \"cypress/**/*.e2e.*\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"axios": "0.21.0",
"cors": "2.8.5",
"express": "4.17.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-scripts": "4.0.0"
},
"devDependencies": {
"@cypress/browserify-preprocessor": "3.0.1",
"@testing-library/cypress": "7.0.1",
"cypress": "5.6.0",
"cypress-skip-and-only-ui": "1.2.10",
"cypress-watch-and-reload": "1.2.18",
"nodemon": "2.0.6",
"start-server-and-test": "1.11.5"
}
}