-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.4 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.4 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
{
"name": "me-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.ts",
"build": "rimraf dist && tsc",
"ts.check": "tsc --project tsconfig.json",
"add-build": "git add dist",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npx prisma generate"
},
"pre-commit": [
"ts.check",
"build",
"add-build"
],
"keywords": [
"evairo",
"blog",
"technology",
"next",
"js"
],
"author": "evairo",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.10.2",
"@supabase/supabase-js": "^2.38.3",
"@types/http-errors": "^2.0.3",
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mkdirp": "^3.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1",
"pre-commit": "^1.2.2",
"rimraf": "^5.0.5",
"sharp": "^0.32.6",
"slug": "^8.2.3",
"unique-username-generator": "^1.2.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.5",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/morgan": "^1.9.7",
"@types/node": "^20.8.7",
"@types/slug": "^5.0.6",
"express": "^4.18.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}