-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "async",
"version": "0.0.1",
"private": true,
"homepage": "https://hilarylewis92.github.io/weather-forecast/",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-jest": "^17.0.2",
"babel-preset-es2015": "^6.18.0",
"enzyme": "^2.6.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"expect": "^1.20.2",
"gh-pages": "^0.12.0",
"jest": "^17.0.3",
"nock": "^9.0.2",
"react-scripts": "^0.6.0",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.2.1"
},
"dependencies": {
"babel-preset-react": "^6.16.0",
"es6-promise": "^4.0.5",
"isomorphic-fetch": "^2.2.1",
"react": "^15.3.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "jest",
"test:watch": "npm test -- --watch",
"deploy": "npm run build&&gh-pages -d build"
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}