-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.79 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-node-boilerplate",
"version": "1.0.0",
"description": "",
"scripts": {
"build:server": "babel ./app -d build",
"build:watch:server": "babel ./app -d build --watch",
"build:client": "webpack --config ./webpack.config.js/",
"build:watch:client": "webpack --config ./webpack.config.js/ --watch",
"build:prod": "npm run build:server && npm run build:client",
"start": "npm run build:prod && NODE_ENV=production node ./build/server/index.js",
"start:dev": "parallelshell 'npm run build:watch:client' 'npm run build:watch:server' 'nodemon ./build/server/index.js'",
"start:dev:client": "webpack-dev-server",
"test": "jest --watch"
},
"author": "",
"license": "ISC",
"jest": {
"testPathIgnorePatterns": [
"/build/"
],
"modulePathIgnorePatterns": [
"/build/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"dependencies": {
"axios": "^0.16.2",
"cors": "^2.8.4",
"express": "^4.15.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"parallelshell": "^3.0.1",
"react-test-renderer": "^15.6.1",
"redux-mock-store": "^1.2.3",
"supertest": "^3.0.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
}
}