-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
78 lines (78 loc) · 1.9 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
{
"name": "ele-cli",
"version": "0.1.16",
"author": "sarva",
"description": "a cli help you gen element form page quick",
"bin": {
"ele": "./bin/index.js"
},
"keywords": [
"vue",
"element",
"vue-element-admin",
"nocode"
],
"bugs": {
"url": "https://github.com/Liugq5713/vue-element-nocode-admin/issues"
},
"homepage": "https://github.com/Liugq5713/vue-element-nocode-admin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Liugq5713/vue-element-nocode-admin.git"
},
"license": "MIT",
"scripts": {
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"client": "vue-cli-service serve",
"dist": "http-server dist -o -P http://localhost:3000",
"dev": "concurrently 'npm run client' 'npm run server'",
"serve": "concurrently 'npm run dist' 'npm run server'",
"server": "node ./server.js"
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"clipboard": "^2.0.4",
"commander": "^3.0.0",
"concurrently": "^4.1.2",
"core-js": "^2.6.5",
"element-ui": "^2.10.1",
"http-server": "^0.11.1",
"koa": "^2.8.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"vue": "^2.6.10",
"vue-i18n": "^8.11.2",
"vue-router": "^3.0.3",
"vuedraggable": "^2.20.0",
"vuex": "^3.1.1"
},
"devDependencies": {
"nodemon": "^1.19.1",
"@vue/cli-service": "^3.6.0",
"@vue/cli-plugin-babel": "^3.6.0",
"babel-eslint": "^10.0.1",
"babel-preset-vue-app": "^2.0.0",
"vue-template-compiler": "^2.5.21",
"@vue/cli-plugin-eslint": "^3.6.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.3"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}