-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "boilerplate-redux-async",
"version": "0.1.1",
"description": "React Redux with simple async action",
"main": "server/index",
"scripts": {
"dev": "nodemon --watch server & webpack --watch",
"test": "jest --watchAll",
"start": "node server",
"postinstall": "webpack"
},
"author": "EDA",
"license": "ISC",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread"
]
},
"dependencies": {
"express": "^4.16.4"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"jest": "^24.1.0",
"nock": "^10.0.2",
"nodemon": "^1.18.6",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"superagent": "^5.0.2",
"supertest": "^4.0.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3"
},
"jest": {
"setupFiles": [
"./tests/client/setup.js"
]
}
}