-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "ecommerce-server",
"version": "1.0.0",
"description": "E-commerce platform",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/server.ts",
"lint": "eslint . --ext .ts",
"test": "jest",
"migrate": "ts-node src/db/migrations/run.ts"
},
"keywords": [
"ecommerce",
"express",
"typescript",
"supabase",
"stripe"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@supabase/supabase-js": "^2.49.1",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csrf": "^3.1.0",
"csurf": "^1.10.0",
"dotenv": "^16.4.7",
"express": "5.1.0",
"express-validator": "^7.2.1",
"helmet": "^8.0.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"shippo": "^2.15.0",
"stripe": "18.1.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/csurf": "^1.11.5",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.13.7",
"@types/shippo": "^1.7.8",
"nodemon": "^3.1.9",
"supabase": "^2.15.8",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.2"
}
}