-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.65 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.65 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "lerna run start",
"build": "lerna run build",
"clean": "lerna clean",
"precommit": "lint-staged",
"deploy": "node deploy.js"
},
"lint-staged": {
"**/*.{js,ts,json,css,md}": [
"npm run prettier",
"git add"
],
"**/*.{js,ts}": [
"npm run lint:fix",
"git add"
]
},
"dependencies": {
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-actions-promise": "^1.1.5",
"redux-logger": "^3.0.6",
"react-hot-loader": "^4.9.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"antd": "^3.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"element-ui": "^2.8.2",
"vue": "^2.6.10",
"vue-router": "^3.0.3",
"vuex": "^3.0.1",
"maptalks": "^0.45.1",
"vue-hot-reload-api": "^2.3.3"
},
"devDependencies": {
"qiankun": "^1.2.0",
"autoprefixer": "^9.4.3",
"lerna": "^3.17.0",
"lerna-changelog": "^0.8.2",
"codecov": "^3.0.0",
"cross-env": "^5.2.0",
"gh-pages": "^1.2.0",
"@vue/component-compiler-utils": "^3.0.0",
"babel-core": "^6.26.3",
"http-server": "^0.11.1",
"parcel-bundler": "^1.12.3",
"vue-template-compiler": "^2.6.10",
"less": "^3.9.0",
"postcss-modules": "^1.4.1",
"check-prettier": "^1.0.3",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"fs-extra": "^8.1.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"license": "MIT"
}