-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.68 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.68 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
{
"name": "quasar-project",
"version": "0.0.1",
"description": "PL 可視化是一個基於中原大學資訊工程學系必修課程「程式語言」的學習輔助工具,透過視覺化的方式,幫助學生更容易理解程式語言的運作原理。",
"productName": "PL 可視化",
"author": "Joe <joe3727@gmail.com>",
"maintainers": [
{
"name": "ja-errorpro",
"email": "compileerr0r@ja-errorpro.codes",
"url": "https://ja-errorpro.codes"
}
],
"type": "module",
"private": true,
"scripts": {
"lint": "eslint -c ./eslint.config.js './src*/**/*.{js,cjs,mjs,vue}'",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"dev": "quasar dev",
"build": "quasar build",
"postinstall": "quasar prepare"
},
"dependencies": {
"@quasar/extras": "^1.17.0",
"axios": "^1.13.6",
"d3": "^7.9.0",
"quasar": "^2.18.6",
"socket.io-client": "^4.8.3",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vue": "^3.5.29",
"vue-router": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@quasar/app-vite": "^2.4.1",
"@quasar/quasar-app-extension-typescript": "^1.0.2",
"@vue/eslint-config-prettier": "^10.2.0",
"autoprefixer": "^10.4.27",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"globals": "^15.12.0",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"vite-plugin-checker": "^0.12.0"
},
"overrides": {
"serialize-javascript": "^7.0.3"
},
"engines": {
"node": "^28 || ^26 || ^24 || ^22 || ^20 || ^18",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}