-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.21 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.21 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
{
"name": "abdu-assabri-backend-work-sample",
"version": "1.0.0",
"description": "Backend work sample by Abdu Assabri",
"main": "index.js",
"scripts": {
"start": "nodemon --watch src --ext ts --exec ts-node src/index.ts",
"build": "tsc && npm run openapi:generate -- dist/openapi.json",
"openapi:generate": "ts-node src/openapi/write-openapi.ts",
"start:prod": "node dist/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=test --coverage",
"postgres:start": "bash scripts/run-postgres.sh",
"db:generate": "drizzle-kit generate",
"db:migrate": "ts-node src/db/init.ts",
"db:reset-local": "ts-node src/db/reset-local.ts",
"type:check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"author": "Abdu Assabri",
"license": "ISC",
"engines": {
"node": "24.14.0",
"npm": "11.9.0"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.3",
"@electric-sql/pglite": "^0.3.14",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.44.5",
"express": "^4.18.2",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"pg": "^8.16.3",
"swagger-ui-express": "^5.0.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.3",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"drizzle-kit": "^0.31.9",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^29.5.0",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"supertest": "^7.1.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}