-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "kuhluh",
"version": "0.1.1",
"description": " An illustration of a Redux async action creator",
"repository": "https://github.com/don-smith/kuhluh",
"main": "server/index.js",
"author": "Don Smith <don@antiantonym>",
"license": "ISC",
"scripts": {
"start": "node server/index & webpack --watch",
"test": "jest"
},
"jest": {
"setupFiles": [
"./tests/setup.js"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.9.1",
"jest": "^24.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.2.0",
"superagent": "^5.1.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.16.3"
}
}