-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "weather-rescue-subjects",
"version": "1.0.1",
"description": "Workflow for creating Weather Rescue subjects",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --host 0.0.0.0 --port 8000",
"build": "webpack --config webpack.prod.js --display-modules",
"test": "mocha --bail --compilers js:babel-core/register --watch"
},
"author": "sktw",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"chai-enzyme": "^1.0.0-beta.0",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.3.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.17.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.6.1",
"html-webpack-plugin": "^2.30.1",
"json-server": "^0.10.0",
"mocha": "^5.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.3",
"sinon": "^4.2.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "^4.1.1"
},
"dependencies": {
"promise-polyfill": "^8.1.0",
"prop-types": "^15.6.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.3.0",
"whatwg-fetch": "^2.0.4"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}