-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
124 lines (124 loc) · 3.69 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "praeco",
"version": "1.8.19",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint --no-fix",
"lint:fix": "vue-cli-service lint",
"test": "vue-cli-service test:e2e --headless",
"test:coverage": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test:unit",
"test:coverage:watch": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test:watch",
"test:watch": "vue-cli-service test:unit --watch"
},
"dependencies": {
"@babel/core": "^7.23.7",
"@browser-bunyan/server-stream": "1.8.0",
"@fortawesome/fontawesome-svg-core": "6.5.1",
"@fortawesome/free-brands-svg-icons": "6.5.1",
"@fortawesome/free-regular-svg-icons": "6.5.1",
"@fortawesome/free-solid-svg-icons": "6.5.1",
"@fortawesome/vue-fontawesome": "2.0.10",
"@riophae/vue-treeselect": "0.4.0",
"@vue-js-cron/light": "^1.0.5",
"axios": "1.6.5",
"browser-bunyan": "1.8.0",
"canvas": "^2.11.2",
"change-case": "4.1.2",
"comma-number": "2.1.0",
"core-js": "^3.35.0",
"cron-ui": "1.0.3",
"dayjs": "^1.11.10",
"debounce": "1.2.1",
"echarts": "^5.4.3",
"element-ui": "2.15.14",
"emoji-mart-vue-fast": "^15.0.0",
"js-yaml": "4.1.0",
"lodash.clonedeep": "4.5.0",
"lodash.get": "4.4.2",
"lodash.throttle": "4.1.1",
"node-sass": "^9.0.0",
"normalize.css": "8.0.1",
"prettycron": "github:nsano-rururu/prettycron",
"prismjs": "1.29.0",
"sass-loader": "^13.3.3",
"semver": "7.5.4",
"string-format": "2.0.0",
"validator": "^13.11.0",
"vue": "^2.7.16",
"vue-at": "2.5.1",
"vue-echarts": "6.6.8",
"vue-json-pretty": "1.8.3",
"vue-native-websocket": "github:nsano-rururu/vue-native-websocket#2.1.1",
"vue-prism-component": "1.2.0",
"vue-query-builder": "github:nsano-rururu/vue-query-builder#v0.6.1vue2",
"vue-router": "3.6.5",
"vue-split-panel": "1.0.4",
"vuex": "3.6.2",
"vuex-persist": "3.1.3",
"webpack": "5.88.2",
"zrender": "5.4.4"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-e2e-cypress": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-unit-mocha": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-airbnb": "^8.0.0",
"@vue/test-utils": "1.3.0",
"axios-mock-adapter": "1.22.0",
"babel-plugin-istanbul": "6.1.1",
"chai": "4.3.10",
"coverage-istanbul-loader": "^3.0.5",
"cross-env": "7.0.3",
"cypress": "^13.6.2",
"eslint": "^8.56.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-rulesdir": "^0.2.2",
"eslint-plugin-vue": "^9.20.1",
"jsdom": "23.2.0",
"localstorage-polyfill": "1.0.1",
"mutationobserver-simple-polyfill": "0.0.2",
"nyc": "15.1.0",
"vue-template-compiler": "^2.7.16"
},
"overrides": {
"@vue/vue-loader-v15": "npm:vue-loader@^15.11.1"
},
"nyc": {
"instrument": true,
"check-coverage": true,
"per-file": true,
"lines": 0,
"statements": 0,
"functions": 0,
"branches": 0,
"register": "babel-register",
"include": [
"apollo-server/**/*.js",
"src/**/*.{js,vue}"
],
"exclude": [
"apollo-server/*.js",
"src/*.js"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"extension": [
".js"
],
"cache": true,
"all": true
}
}