-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.7 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.7 KB
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": "autoReactApp",
"version": "0.0.1",
"description": "",
"main": "main.js",
"scripts": {
"prod": "autos build",
"dev": "autos dev",
"test": "autos build -t",
"analyzer": "autos build -t --analyzer",
"lint": "eslint --fix ./src --ext .js,.jsx",
"format": "prettier --write src/**/*.{js,jsx}"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"author": "easonchiu",
"license": "ISC",
"devDependencies": {
"eslint-config-atzuche": "latest",
"autos": "latest",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.3",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@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-runtime": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-import": "^1.11.0",
"babel-plugin-react-css-modules": "^5.2.4",
"core-js": "3.0.1",
"eslint": "^5.16.0"
},
"dependencies": {
"add": "^2.0.6",
"at-js-sdk": "latest",
"auto-libs": "latest",
"auto-ui": "latest",
"axios": "^0.17.1",
"classnames": "^2.2.5",
"easy-action": "^0.0.11",
"es6-map": "^0.1.5",
"es6-promise": "^4.2.4",
"es6-set": "^0.1.5",
"fastclick": "^1.0.6",
"iscroll": "^5.2.0",
"js-cookie": "^2.2.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"seamless-immutable": "^7.1.2",
"vconsole": "^3.1.0",
"weixin-js-sdk": "^1.3.3",
"why-did-you-update": "^0.1.1"
},
"browserslist": [
"ios >= 7",
"android >= 4.4"
]
}