-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "saltnet",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"check": "vue-tsc -b && prettier --check .",
"build": "vue-tsc -b && vite build && node ./script/generateBuildInfo.cjs",
"preview": "vite preview",
"pret": "prettier --check .",
"pret:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"dom-to-image-more": "^3.6.3",
"jwt-decode": "^4.0.0",
"localforage": "^1.10.0",
"mdui": "^2.1.3",
"pinia": "^3.0.3",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@types/dom-to-image": "^2.6.7",
"@types/node": "^22.14.1",
"@vitejs/plugin-legacy": "^7.2.1",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.39.2",
"path": "^0.12.7",
"prettier": "^3.5.3",
"typescript": "~5.7.2",
"url": "^0.11.4",
"vite": "^7.1.1",
"vue-tsc": "^2.2.8"
}
}