-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 974 Bytes
/
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
{
"name": "cypress-report",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.17.1",
"moment": "^2.20.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router": "3.2.0",
"react-scripts": "1.1.0",
"serve": "^6.4.9"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"serve": "serve -p 3000 -s build",
"docker:install": "docker-compose run --rm cy-yarn install",
"docker:cy:test": "docker-compose run --rm cy-yarn cy:test",
"cy:attach-open": "wait-on http-get://localhost:3000/ && cypress open",
"cy:attach-run": "wait-on http-get://localhost:3000/ && cypress run",
"cy:start": "run-p start cy:attach-open",
"cy:test": "run-p --race start cy:attach-run"
},
"devDependencies": {
"cypress": "^1.4.1",
"npm-run-all": "^4.1.2",
"wait-on": "^2.1.0"
}
}