-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "traportfolio",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"serve": "vite preview",
"build": "vite build",
"lint": "eslint --fix --cache src",
"lint:nofix": "eslint --cache src",
"format": "prettier --cache --write \"src/**/*.{vue,ts}\"",
"format:nofix": "prettier --cache --check \"src/**/*.{vue,ts}\"",
"type-check": "vue-tsc --noEmit",
"gen-api": "node scripts/generateApi.js"
},
"dependencies": {
"axios": "^1.13.2",
"pinia": "^3.0.4",
"ress": "^5.0.2",
"vue": "^3.5.33",
"vue-router": "^5.0.6"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@iconify/vue": "^5.0.0",
"@types/node": "^24.10.2",
"@vitejs/plugin-vue": "^6.0.6",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.6.2",
"msw": "^2.14.2",
"node-fetch": "^3.3.2",
"prettier": "^3.8.3",
"sass": "^1.97.1",
"ts-morph": "^27.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.1",
"vite": "^7.3.2",
"vue-tsc": "^3.2.7"
},
"private": true,
"type": "module",
"msw": {
"workerDirectory": [
"public"
]
}
}