-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 904 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
{
"name": "simple-reactjs-test",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.18.0",
"concurrently": "^6.3.0",
"json-server": "^0.17.0",
"path": "^0.12.7",
"react": "^16.4.1",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.4.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4"
},
"scripts": {
"start": "react-scripts start",
"server": "node apiServer.js",
"test": "node_modules/.bin/cypress run --browser chrome",
"all": "node_modules/.bin/concurrently --kill-others \"yarn start\" \"yarn server\" \"yarn test\"",
"call:api": "curl --location --request GET 'http://localhost:3001/customerList'"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"devDependencies": {
"cypress": "^7.5.0",
"cypress-cucumber-preprocessor": "^4.1.2",
"gh-pages": "^1.2.0"
}
}