-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 KB
/
package.json
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": "gvc-scheduling",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier --write .",
"dev": "tsx src/server.ts | pino-pretty -H",
"start": "tsx src/server.ts",
"init-db": "rm ./gvc.db; sqlite3 ./gvc.db < ./schema.sql",
"watch": "vite build --watch --config vite.config.ts --mode development",
"build": "vite build --config vite.config.ts"
},
"keywords": [],
"author": "",
"license": "NVPL",
"dependencies": {
"@types/markdown-it": "^14.1.1",
"@vueuse/core": "^10.11.0",
"better-sqlite3": "^11.0.0",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.0",
"markdown-it": "^14.1.0",
"pinia": "^2.1.7",
"pino-http": "^10.1.0",
"pino-pretty": "^11.1.0",
"slugify": "^1.6.6",
"tiny-emitter": "^2.1.0",
"vue": "^3.4.33",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@vitejs/plugin-vue": "^5.0.5",
"prettier": "^3.2.5",
"tsx": "^4.11.0",
"typescript": "^5.5.4",
"vite": "^5.3.4"
}
}