-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.4 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
48
49
50
51
52
53
54
55
56
57
{
"name": "node-checkin",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"start": "tsx src/server.ts",
"build": "tsup src",
"lint": "eslint 'src/**/*.{ts,tsx,json}'",
"start:dev": "tsx watch --env-file .env src/server.ts",
"husky:prepare": "npx husky init",
"test": "vitest",
"test:lint": "vitest run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm eslint --fix",
"pnpm prettier --write \"src/**/*.{ts,tsx}\"",
"pnpm test:lint --passWithNoTests"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@prisma/client": "^5.12.1",
"fastify": "^4.26.2",
"fastify-type-provider-zod": "^1.1.9",
"prisma": "^5.12.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"typescript-eslint": "^7.5.0",
"vitest": "^1.4.0"
}
}