-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "amazon-api",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"migrate:generate": "drizzle-kit generate",
"migrate:push": "drizzle-kit push",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"seed": "ts-node scripts/importProducts.ts",
"studio": "drizzle-kit studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@clerk/backend": "^1.32.3",
"@clerk/express": "^1.4.20",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"express": "^5.1.0",
"multer": "^2.0.0",
"pg": "^8.16.0",
"stripe": "^18.2.1"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/multer": "^1.4.12",
"@types/node": "^22.15.21",
"@types/pg": "^8.15.2",
"drizzle-kit": "^0.31.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
}
}