-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "fastsun",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 8080",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"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": {
"@primevue/forms": "^4.3.7",
"@primevue/themes": "^4.3.7",
"@types/crypto-js": "^4.2.2",
"@types/http-proxy": "^1.17.16",
"axios-vue": "^0.1.3",
"chart.js": "^4.5.0",
"chartjs-adapter-date-fns": "^3.0.0",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"http-proxy": "^1.18.1",
"mitt-vue": "^2.1.2",
"pluginapp-sdk-node": "^0.1.0",
"primeicons": "^7.0.0",
"primevue": "^4.3.7",
"ts-node": "^10.9.2",
"vue": "^3.5.20",
"vue-i18n": "^11.1.11",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.3.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.1",
"@vitest/eslint-plugin": "1.3.5",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.34.0",
"eslint-plugin-oxlint": "^1.14.0",
"eslint-plugin-vue": "^10.4.0",
"jsdom": "^26.1.0",
"npm-run-all2": "^8.0.4",
"oxlint": "^1.14.0",
"prettier": "^3.6.2",
"typescript": "~5.9.2",
"vite": "^7.1.4",
"vite-plugin-vue-devtools": "^8.0.1",
"vitest": "^3.2.4",
"vue-tsc": "^3.0.6"
}
}