-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.18 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
{
"name": "react-app-template",
"version": "1.0.0",
"description": "SPA Production ready setup using only React",
"readme": "Readme.md",
"license": "MIT",
"authors": [
"Ivan Dimanov <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IvanDimanov/react-app-template.git"
},
"scripts": {
"lint": "eslint .",
"test": "echo No tests for now",
"prebuild": "npm run lint && npm run test",
"build": "webpack --config webpack/config.production.js",
"now-build": "npm run build",
"local-development": "webpack-serve --config webpack/config.development.js",
"deploy": "now --target production",
"prepush": "npm run lint"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@material-ui/core": "3.9.3",
"axios": "0.18.1",
"immutable": "4.0.0-rc.12",
"prop-types": "15.7.2",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-lazy-load": "3.0.13",
"react-router": "5.0.0",
"react-router-dom": "5.0.0"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-export-namespace-from": "7.2.0",
"@babel/plugin-proposal-function-sent": "7.2.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/plugin-transform-async-to-generator": "7.4.0",
"@babel/plugin-transform-strict-mode": "7.2.0",
"@babel/polyfill": "7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"clean-webpack-plugin": "2.0.1",
"core-js": "2.5.7",
"eslint": "5.16.0",
"eslint-config-google": "0.12.0",
"eslint-plugin-react": "7.12.4",
"html-webpack-plugin": "3.2.0",
"husky": "1.3.1",
"terser-webpack-plugin": "1.2.3",
"webpack": "4.29.6",
"webpack-cli": "3.3.0",
"webpack-merge": "4.2.1",
"webpack-serve": "2.0.2"
}
}