-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.36 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
{
"name": "isomorphic-weather",
"version": "0.0.1",
"engines": {
"node": ">=10.15"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"start:prod": "node scripts/startProd.js",
"format": "prettier --write \"src/**/*.{js,json,css}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css}": [
"npm run format",
"git add"
]
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"babel-plugin-css-modules-transform": "^1.6.2",
"babel-plugin-dynamic-import-node": "^2.3.0",
"body-parser": "^1.19.0",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"core-js": "^3.2.1",
"css-loader": "^3.2.0",
"date-fns": "^2.11.1",
"dotenv": "^8.1.0",
"error-overlay-webpack-plugin": "^0.4.1",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"helmet": "^3.20.1",
"husky": "^3.0.5",
"import-glob-loader": "^1.1.0",
"isomorphic-unfetch": "^3.0.0",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"lodash-webpack-plugin": "^0.11.5",
"material-table": "^1.57.2",
"mini-css-extract-plugin": "^0.8.0",
"morgan": "^1.9.1",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-dev-utils": "^9.0.3",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"react-loadable": "^5.5.0",
"react-router-dom": "^5.0.1",
"react-select": "^3.1.0",
"react-test-renderer": "^16.9.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.39.3",
"webpack-dev-middleware": "^3.7.1",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.0.4",
"webpack-node-externals": "^1.7.2"
}
}