-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
{
"name": "probo-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --watch src --exec ts-node src/index.ts",
"build": "tsc",
"run": "pnpm run build && pnpm run start",
"clean": "rimraf dist",
"lint": "eslint ./src/**/*.{ts,tsx}",
"format": "prettier --write ./src/**/*.{ts,tsx,json,md}",
"prettier:check": "prettier --check ./src/**/*.{ts,tsx,json,md}",
"prepare": "husky install",
"lint:eslint:fix": "eslint . --fix",
"lint:prettier:fix": "prettier --write ./src/**/*.{ts,tsx,json,md}",
"validate": "pnpm run lint && pnpm run prettier:check",
"postinstall": "pnpm drizzle-kit generate:pg",
"db:migrate": "pnpm drizzle-kit migrate",
"db:generate": "pnpm drizzle-kit generate",
"db:push": "pnpm drizzle-kit push",
"db:studio": "pnpm drizzle-kit studio",
"lint:fix": "pnpm run lint:eslint:fix && pnpm run lint:prettier:fix",
"test": "vitest",
"test:integration": "./scripts/run-integration.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"drizzle-orm": "^0.38.4",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^22.10.10",
"@types/pg": "^8.11.11",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"nodemon": "^3.1.9",
"prettier": "3.4.2",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.4"
}
}