forked from don-smith/kuhluh
-
Notifications
You must be signed in to change notification settings - Fork 5
/
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.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.0",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.2.0",
"superagent": "^5.2.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"cors": "^2.8.4",
"express": "^4.17.1"
}
}