-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.82 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.82 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
{
"name": "cloudsplaining",
"main": "cloudsplaining/output",
"version": "0.4.8",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --mode development --open",
"build": "vue-cli-service build --mode production --dest cloudsplaining/output/dist --no-clean",
"lint": "vue-cli-service lint",
"test": "mocha --recursive cloudsplaining/output/src/test/"
},
"directories": {
"test": "src/test/"
},
"dependencies": {
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"bootstrap-vue-next": "^0.43.7",
"chart.js": "^4.5.1",
"core-js": "^3.48.0",
"vue": "^3.5.29",
"vue-chartjs": "^5.3.3",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^5.0.9",
"@vue/cli-plugin-eslint": "^5.0.9",
"@vue/cli-service": "^5.0.9",
"@vue/compiler-sfc": "^3.5.27",
"@babel/eslint-parser": "^7.28.6",
"chai": "^6.2.2",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.33.0",
"html-webpack-plugin": "^5.6.6",
"inline-chunk-html-plugin": "^1.0.4",
"markdown-anchor": "^0.2.0",
"markdown-it": "^14.1.0",
"mocha": "^11.7.5",
"preload-webpack-plugin": "^3.0.0-beta.4",
"webpack-chain": "^6.5.1"
},
"engines": {
"node": ">=20"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser",
"requireConfigFile": false,
"babelOptions": {
"presets": [
"@vue/cli-plugin-babel/preset"
]
}
},
"rules": {
"no-var": "off",
"vue/multi-word-component-names": "off",
"vue/no-reserved-component-names": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}