-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"name": "ceds-browser",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint:oxlint": "oxlint . --fix -D correctness --ignore-path .gitignore",
"lint:eslint": "eslint . --fix",
"lint": "run-s lint:*",
"format": "prettier --write src/"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.8",
"n3": "^2.0.1",
"pinia": "^3.0.3",
"vue": "^3.5.20",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/bootstrap": "^5.2.10",
"@types/n3": "^1.26.0",
"@types/node": "^25.3.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/tsconfig": "^0.9.0",
"eslint": "^10.0.2",
"eslint-plugin-oxlint": "^1.13.0",
"eslint-plugin-vue": "^10.4.0",
"jiti": "^2.5.1",
"npm-run-all2": "^8.0.4",
"oxlint": "^1.13.0",
"prettier": "^3.8.1",
"typescript": "~5.9.2",
"vite": "^8.0",
"vite-plugin-vue-devtools": "^8.0.1",
"vue-tsc": "^3.0.6"
}
}