-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "physics-lab-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run lint && vue-tsc -b && vite build",
"preview": "vite preview",
"build:test": "vue-tsc -b && vite build --mode test",
"eslint": "npx eslint src/**/*.{ts,vue,js,css} --fix",
"lint": "npx prettier --write ./**/*.{ts,vue,js,css} && npx eslint src/**/*.{ts,vue,js,css} --fix"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^4.6.2",
"@vitejs/plugin-legacy": "^6.1.0",
"date-fns": "^4.1.0",
"dompurify": "^3.2.3",
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0",
"markdown-it-highlightjs": "^4.2.0",
"markdown-it-katex": "^2.0.3",
"naive-ui": "^2.41.0",
"prettier": "^3.5.3",
"vue": "^3.5.12",
"vue-i18n": "^11.1.5",
"vue-router": "^4.0.13"
},
"devDependencies": {
"@types/highlight.js": "^9.12.4",
"@types/markdown-it": "^14.1.2",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.7.0",
"autoprefixer": "^10.4.21",
"browserslist": "^4.25.1",
"eslint": "^9.31.0",
"eslint-plugin-vue": "^10.2.0",
"postcss": "^8.5.3",
"terser": "^5.43.1",
"typescript": "~5.6.2",
"vite": "^6.0.5",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^2.2.0"
}
}