-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.31 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-redux-weather-app",
"author": "linvivian7",
"license": "MIT",
"version": "1.0.0",
"description": "Weather app for all your weather needs",
"main": "./index.js",
"engines": {
"node": "9.3.0"
},
"scripts": {
"start": "NODE_ENV=production npm run serve:static",
"start:dev": "NODE_ENV=development npm-run-all --serial build serve:static",
"start:production": "NODE_ENV=production npm-run-all --serial build:production serve:static",
"build": "NODE_ENV=development webpack --mode=development --config ./webpack.dev.config.js",
"build:production": "NODE_ENV=production webpack --mode=production --config ./webpack.prod.config.js",
"serve:static": "node ./app.js",
"heroku-prebuild": "export NPM_CONFIG_PRODUCTION=false; export NODE_ENV=; NPM_CONFIG_PRODUCTION=false NODE_ENV=development npm install --only=dev --dev",
"postinstall": "npm run build:production",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"moduleNameMapper": {
"^.+\\.(css|scss|svg|jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy"
},
"setupFiles": [
"./src/test/jestsetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"dependencies": {
"async": "^2.6.0",
"axios": "^0.18.0",
"beaufort-scale": "^1.0.3",
"history": "^4.7.2",
"moment-timezone": "^0.5.14"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-dynamic-import-webpack": "^1.0.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-3": "^6.24.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.11",
"dotenv-webpack": "^1.5.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"json-loader": "^0.5.7",
"mime-types": "^2.1.18",
"node-sass": "^4.8.3",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.1",
"react": "16.0.0-alpha.12",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "16.0.0-alpha.12",
"react-redux": "^4.4.9",
"react-router": "3.0.5",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-test-renderer": "^16.3.2",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.3.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"sass-loader": "^7.0.1",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.3",
"webpack-hot-middleware": "^2.22.1"
}
}