-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.56 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": "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",
"test:course": "vitest run src/components/data/course/index.test.ts",
"test:kaleidxscope": "vitest run src/components/data/kaleidxscope/index.test.ts",
"test:collection-index": "vitest run src/components/data/collection/index.test.ts src/components/data/collection/relatedCollections.test.ts",
"test:build-info": "node --test script/generateBuildInfo.test.cjs"
},
"dependencies": {
"jwt-decode": "^4.0.0",
"localforage": "^1.10.0",
"mdui": "^2.1.3",
"pinia": "^3.0.3",
"react": "^19.2.7",
"takumi-js": "rc",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@types/node": "^22.14.1",
"@types/react": "^19.2.17",
"@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",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.8"
}
}