-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.5 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
{
"name": "prose-pod-dashboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist/",
"fix": "prettier --write .",
"lint:js": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"lint:ts": "vue-tsc",
"lint:prettier": "prettier --check src/ config/ *.*",
"lint": "npm run lint:js && npm run lint:ts && npm run lint:prettier",
"test": "npm run lint"
},
"dependencies": {
"axios": "1.7.7",
"browser-image-resizer": "^2.4.1",
"file64": "^1.0.4",
"keycode": "2.2.1",
"lodash.camelcase": "4.3.0",
"lodash.merge": "4.6.2",
"lodash.upperfirst": "4.3.1",
"mitt": "3.0.1",
"pinia": "2.2.4",
"pinia-plugin-persistedstate": "3.1.0",
"vue": "3.4.37",
"vue-router": "4.4.5",
"vue3-click-away": "1.2.4"
},
"devDependencies": {
"@types/lodash.camelcase": "4.3.x",
"@types/lodash.merge": "4.6.x",
"@types/lodash.upperfirst": "4.3.x",
"@types/node": "22.5.x",
"@typescript-eslint/eslint-plugin": "5.48.x",
"@typescript-eslint/parser": "5.48.x",
"@vitejs/plugin-vue": "5.1.x",
"eslint": "8.31.x",
"eslint-config-prettier": "8.6.x",
"eslint-plugin-vue": "9.8.x",
"fast-glob": "3.3.x",
"prettier": "2.8.x",
"sass": "1.79.x",
"typescript": "4.9.x",
"vite": "5.4.x",
"vite-plugin-pug-transformer": "1.0.x",
"vite-plugin-svg-icons": "2.0.x",
"vue-tsc": "1.8.x"
}
}