-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "ember-be",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "npx tsc && node dist/index.js",
"test": "vitest --run",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaileyKH/ember-be.git"
},
"keywords": [],
"type": "module",
"bugs": {
"url": "https://github.com/BaileyKH/ember-be/issues"
},
"homepage": "https://github.com/BaileyKH/ember-be#readme",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^2.2.0",
"@types/node": "^26.1.1",
"drizzle-kit": "^0.31.10",
"typescript": "^7.0.2",
"vitest": "^3.2.7"
},
"dependencies": {
"@supabase/supabase-js": "^2.110.9",
"argon2": "^0.45.0",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"multer": "^2.2.0",
"postgres": "^3.4.9",
"sharp": "^0.35.3"
}
}