-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.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
{
"name": "react-project",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cd app && npm run start",
"build": "cd app && npm run build",
"test": "cd app && npm run test",
"mock": "nodemon ./scripts/mock-server.js",
"eslint": "eslint --fix --format codeframe ./",
"server": "nodemon ./server/server.js",
"precommit": "lint-staged"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"@koa/cors": "^2.2.3",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"colors": "^1.3.3",
"dotenv": "^6.2.0",
"dotenv-expand": "^4.2.0",
"execa": "^1.0.0",
"immutable": "^4.0.0-rc.12",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-convert": "^1.2.0",
"koa-logger": "^3.2.0",
"koa-proxy": "^0.9.0",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"koa-static": "^5.0.0",
"mockjs": "^1.0.1-beta3",
"moment": "^2.22.2",
"nodemon": "^1.18.9",
"nprogress": "^0.2.0",
"prop-types": "^15.6.2",
"qs": "^6.6.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-loadable": "^5.5.0",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.7",
"redux-promise-middleware": "^5.1.1",
"redux-thunk": "^2.3.0",
"type-to-reducer": "^1.1.0",
"type-to-reducer-addons": "^0.1.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.0",
"lint-staged": "^8.1.0",
"prettier": "1.15.3",
"react-app-rewire-less": "^2.1.3",
"react-app-rewired": "^1.6.2",
"react-scripts": "2.1.1",
"standard": "^12.0.1"
},
"lint-staged": {
"linters": {
"**/*.{js,jsx,less}": [
"eslint --fix --format codeframe",
"git add"
]
},
"ignore": [
"app/dist/**/*",
"app/build/**/"
]
}
}