-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.26 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
{
"name": "gprost.com-admin-front",
"version": "1.0.0",
"engines": {
"node": "^8.3.0",
"npm": "^5.3.0"
},
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/GProst/for-fun-adm.git"
},
"author": "GProst a.k.a German Prostakov <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --port 3000 --output-public-path=\"http://localhost:3000/\" --public=\"localhost:3000/\" --hot --inline",
"build": "webpack",
"lint": "eslint --ext .js --ext .jsx --ignore-path .gitignore ./",
"precommit": "lint-staged"
},
"bugs": {
"url": "https://github.com/GProst/for-fun-adm/issues"
},
"homepage": "https://github.com/GProst/for-fun-adm#readme",
"dependencies": {
"history": "^4.6.3",
"material-ui": "^1.0.0-beta.6",
"prop-types": "^15.5.10",
"react": "^16.0.0-beta.5",
"react-dom": "^16.0.0-beta.5",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.2",
"styled-components": "^2.1.2",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.2.1",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"react-hot-loader": "^3.0.0-beta.7",
"redux-logger": "^3.0.6",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"webpack": "^3.5.5",
"webpack-chunk-hash": "^0.4.0",
"webpack-dev-server": "^2.7.1"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
}
}