-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "WeatherDashboard",
"version": "1.0.0",
"description": "Weather Dashboard, a test for Aquafadas",
"main": "main.js",
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"start": "webpack-dev-server --hot --display-error-details ",
"build": "webpack --config webpack.production.config.js --progress --profile --colors"
},
"jest": {
"verbose": true,
"modulePaths": [
"src"
]
},
"author": "F.CHAPLIN",
"license": "ISC",
"dependencies": {
"@types/react": "^0.14.41",
"@types/react-dom": "^0.14.18",
"autoprefixer": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"es6-promise": "^4.0.5",
"eslint": "^3.2.2",
"eslint-plugin-react": "^6.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.22.0",
"http-server": "^0.8.5",
"react": "^15.3.0",
"react-addons-shallow-compare": "^15.3.2",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"redux-form": "^6.2.0",
"redux-promise": "^0.5.3",
"redux-router": "^2.1.2",
"redux-thunk": "^2.1.0",
"universal-fetch": "0.0.1",
"webpack": "^1.13.1",
"webpack-cleanup-plugin": "^0.4.1"
},
"devDependencies": {
"webpack-dev-server": "^1.14.1",
"resolve-url-loader": "^1.6.0",
"file-loader": "^0.9.0",
"sass-loader": "^4.0.2",
"css-loader": "^0.24.0",
"style-loader": "^0.13.1",
"raw-loader": "^0.5.1",
"url-loader": "^0.5.7",
"node-sass": "^3.10.0",
"babel-jest": "^16.0.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-runtime": "^6.11.6",
"chai": "^3.5.0",
"jest": "^16.0.1",
"react-test-renderer": "^15.3.2"
}
}