-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.19 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
{
"private": true,
"name": "vite-project",
"version": "0.0.0",
"scripts": {
"build": "vite build",
"dev": "vite --host",
"devlocal": "vite",
"format": "yarn run prettier && yarn run lint",
"format:packagejson": "npx prettier-package-json --tab-width 2 --write",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src --fix *.js --no-error-on-unmatched-pattern",
"prettier": "npx prettier --write src/*.?js src/*.html index.html --no-error-on-unmatched-pattern",
"preview": "vite preview"
},
"dependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@popperjs/core": "^2.11.6",
"@vue/eslint-config-prettier": "^7.0.0",
"axios": "^1.1.2",
"bootstrap": "^5.2.2",
"buffer": "^6.0.3",
"datatables.net": "^1.11.4",
"datatables.net-buttons": "^2.2.2",
"datatables.net-dt": "^1.11.4",
"datatables.net-rowgroup": "^1.2.0",
"datatables.net-select": "^1.4.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.6.0",
"jquery": "^3.6.1",
"prettier": "^2.7.1",
"process": "^0.11.10",
"vite-plugin-html": "^3.2.0",
"vue": "^3.2.37"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-prettier": "^4.2.1",
"vite": "^3.1.0"
},
"compilerOptions": {
"target": "es2015",
"types": [
"vite/client"
]
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"commonjs": true,
"browser": true,
"es6": true
},
"parserOptions": {
"sourceType": "module"
},
"plugins": [
"vue",
"html",
"prettier"
],
"rules": {
"no-unused-vars": "off"
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/prettier"
]
}
}