-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.89 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 1.89 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
91
{
"name": "xui",
"version": "0.1.0",
"description": "ui for xprofiler",
"private": true,
"scripts": {
"mock": "nodemon mock/server.js",
"serve": "vue-cli-service serve --port=7443",
"build": "node scripts/build.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^0.19.2",
"core-js": "^3.4.4",
"moment": "^2.24.0",
"view-design": "^4.2.0",
"vue": "^2.6.10",
"vue-dom-portal": "^0.1.6",
"vue-router": "^3.1.5",
"vuex": "^3.1.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"babel-eslint": "^10.0.3",
"body-parser": "^1.19.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"express": "^4.17.1",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"nodemon": "^2.0.2",
"vue-template-compiler": "^2.6.10",
"xprofiler": "^1.2.6"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"vue/no-parsing-error": [
2,
{
"x-invalid-end-tag": false
}
],
"quotes": [
"warn"
],
"semi": [
"warn"
],
"no-empty": [
"warn"
],
"no-unused-vars": [
"warn"
],
"no-constant-condition": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"author": "yeekwanvong@gmail.com",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hyj1991/xui/issues"
},
"homepage": "https://github.com/hyj1991/xui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hyj1991/xui.git"
},
"nodemonConfig": {
"watch": [
"mock/*"
]
}
}