-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
44 lines (44 loc) · 1.34 KB
/
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
38
39
40
41
42
43
44
{
"name": "minimal-react-webpack-babel-setup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./webpack.config.js --mode development",
"test": "mocha --require @babel/register --require ./test/helpers.js --require ./test/dom.js --require ignore-styles 'src/**/*.spec.js'",
"test:watch": "npm run test -- --watch",
"test:cypress": "start-server-and-test start http://localhost:8080 cypress",
"cypress": "cypress run",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"cypress": "^3.4.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"ignore-styles": "^5.0.1",
"jsdom": "^15.1.1",
"mocha": "^6.2.0",
"react-hot-loader": "^4.12.10",
"sinon": "^7.3.2",
"start-server-and-test": "^1.9.1",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"axios": "^0.19.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}