-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 2.35 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 2.35 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mocil",
"version": "0.0.1",
"description": "장애인 자립생활센터 관리 프로그램",
"productName": "장애인 자립생활센터 관리 프로그램",
"author": "Seo Kihyun <from104@gmail.com>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "vitest run",
"test:watch": "vitest",
"dev": "quasar dev",
"debug": "quasar dev -t mat -p chrome",
"build": "quasar build",
"deploy": "./deploy-aws.sh",
"server:dev": "nodemon src-api/server.js",
"server:setup": "yarn node src-api/db/setup.js",
"server:migrate:p16": "yarn node src-api/db/migration_p16.js",
"server:migrate:p18": "yarn node src-api/db/migration_p18.js",
"server:migrate:p19": "yarn node src-api/db/migration_p19.js"
},
"dependencies": {
"@quasar/extras": "^1.17.0",
"axios": "^1.14.0",
"better-sqlite3": "^12.5.0",
"chart.js": "^4.5.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"google-auth-library": "^10.5.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"pinia": "^3.0.4",
"quasar": "^2.19.2",
"vue": "^3.5.31",
"vue-chartjs": "^5.3.3",
"vue-i18n": "^11.3.0",
"vue-router": "^5.0.4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@quasar/app-vite": "^2.5.4",
"@types/cors": "^2",
"@types/express": "^5",
"@types/google.accounts": "^0.0.18",
"@types/jsonwebtoken": "^9",
"@types/node": "^12.20.21",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.27",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-vue": "^9.0.0",
"happy-dom": "^20.8.9",
"nodemon": "^3.1.11",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2",
"vue-tsc": "^3.2.6"
},
"type": "module",
"engines": {
"node": ">=18",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"packageManager": "yarn@4.10.3+sha512.c38cafb5c7bb273f3926d04e55e1d8c9dfa7d9c3ea1f36a4868fa028b9e5f72298f0b7f401ad5eb921749eb012eb1c3bb74bf7503df3ee43fd600d14a018266f"
}