-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "blog_api_ts_express",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"test": "jest",
"generate": "drizzle-kit generate pg --config=src/config/drizzle.config.ts",
"migrate": "tsx -r dotenv/config src/infrastructure/data/migrate.ts",
"studio": "drizzle-kit studio --config=src/config/drizzle.config.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.12.7",
"@types/pg": "^8.11.6",
"@types/supertest": "^6.0.2",
"drizzle-kit": "^0.21.2",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.10.3",
"typescript": "^5.4.5"
},
"dependencies": {
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.30.10",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.5",
"postgres": "^3.4.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"yaml": "^2.4.2"
}
}