-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "nodejs-boilerplate-2024",
"version": "1.0.0",
"description": "��#\u0000 \u0000n\u0000o\u0000d\u0000e\u0000j\u0000s\u0000-\u0000b\u0000o\u0000i\u0000l\u0000e\u0000r\u0000p\u0000l\u0000a\u0000t\u0000e\u0000-\u00002\u00000\u00002\u00004\u0000\r\u0000 \u0000",
"main": "index.js",
"scripts": {
"dev": "nodemon server.ts",
"build": "tsc ",
"type-check": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prettier:fix": "prettier --write src/",
"prettier:check": "prettier --check src/",
"prepare": "husky",
"test": "vitest",
"test:ui": "vitest --ui",
"test:api": "playwright test",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@playwright/test": "^1.46.1",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^22.4.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@vitest/ui": "^2.0.5",
"drizzle-kit": "^0.24.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.7.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"nodemon": "^3.1.4",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"vitest": "^2.0.5"
},
"overrides": {
"eslint": "^9.8.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.33.0",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.2",
"morgan": "^1.10.0",
"postgres": "^3.4.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.14.2",
"zod": "^3.23.8"
}
}