-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.45 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": "qip2",
"version": "0.0.1",
"main": "main.js",
"type": "module",
"author": "Tatsuto Yamamoto",
"license": "Apache-2.0",
"scripts": {
"start": "node --enable-source-maps ./build/main.js",
"dev": "ts-node --esm ./src/main.ts",
"build": "esbuild ./src/main.ts --bundle --sourcemap --platform=node --target=node16 --format=esm --packages=external --outfile=build/main.js",
"lint": "eslint --cache --ignore-path .gitignore 'src/**/**.ts'",
"format": "prettier . --write",
"test": "vitest run",
"coverage": "vitest run --coverage",
"check": "prettier --check 'src/**/**.ts' && tsc -p . --noEmit",
"log": "pino-pretty",
"prisma:format": "prisma format",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/websocket": "^8.2.0",
"@prisma/client": "5.0.0",
"@types/node": "^20.4.1",
"@types/ws": "^8.5.5",
"date-fns": "^2.30.0",
"esbuild": "^0.18.17",
"fastify": "^4.20.0",
"pino": "^8.14.2",
"typescript": "^5.1.6",
"ws": "^8.13.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"pino-pretty": "^10.2.0",
"prettier": "^3.0.0",
"prisma": "^5.0.0",
"ts-node": "^10.9.1",
"vitest": "^0.33.0"
}
}