-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "devconnector",
"version": "2.0.0",
"description": "Social network for developers",
"type": "module",
"main": "server.ts",
"scripts": {
"start": "tsx server.ts",
"server": "tsx watch server.ts",
"client": "npm start --prefix client",
"postinstall": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"format": "prettier --write \"**/*.{ts,js,jsx}\" --ignore-path .gitignore",
"lint": "npm run lint --prefix client",
"lint:fix": "npm run lint:fix --prefix client"
},
"author": "Bjoern Hansen",
"license": "MIT",
"dependencies": {
"@hono/node-server": "^2.0.1",
"bcryptjs": "^3.0.3",
"dotenv": "^17.3.1",
"gravatar": "^1.8.2",
"hono": "^4.7.11",
"jsonwebtoken": "^9.0.3",
"mongoose": "^9.3.3",
"zod": "^4.4.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/gravatar": "^1.8.6",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^25.6.0",
"concurrently": "^9.2.1",
"prettier": "^3.8.1",
"tsx": "^4.19.4",
"typescript": "^6.0.3"
}
}