-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 957 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
33
34
35
36
37
{
"name": "cypress-tutorial-build-todo-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"serve": "json-server db.json",
"dev": "concurrently \"npm run watch\" \"npm run serve\"",
"cypress": "cypress open",
"cypress:all": "cypress run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "0.19.2",
"concurrently": "3.6.1",
"json-server": "0.16.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "4.2.2"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"css-loader": "0.28.11",
"cypress": "3.5.0",
"html-webpack-plugin": "2.30.1",
"style-loader": "0.19.1",
"webpack": "3.12.0"
}
}