-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "@recipher/weather",
"version": "1.0.0",
"private": true,
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.0",
"cross-env": "^2.0.0",
"enzyme": "^2.4.1",
"mocha": "^3.0.1",
"nock": "^8.0.0",
"redux-mock-store": "^1.1.2",
"sinon": "^1.17.5"
},
"dependencies": {
"axios": "^0.13.1",
"express": "^4.14.0",
"lodash": "^4.15.0",
"moment": "^2.14.1",
"radium": "^0.18.1",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"react-scripts": "0.2.1",
"redux": "^3.5.2",
"redux-form": "^5.3.3",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.3"
},
"main": "./index.js",
"scripts": {
"start": "node index",
"develop": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "cross-env NODE_ENV=test mocha --require test/setup.js --recursive --compilers js:babel-register",
"test:watch": "npm test -- --watch",
"postinstall": "npm run build"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}