-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 KB
/
package.json
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
{
"name": "big_server",
"version": "1.0.0",
"description": "Server to handle all my needs",
"main": "index.js",
"scripts": {
"build": "node esbuild.config.js",
"dev": "nodemon",
"start": "node dist/index.js"
},
"author": "ss497254",
"license": "ISC",
"dependencies": {
"@godaddy/terminus": "^4.12.1",
"axios": "^1.5.0",
"bcryptjs": "^2.4.3",
"chalk": "^5.3.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"eventemitter2": "^6.4.9",
"express": "^4.18.2",
"firebase-admin": "^11.10.1",
"jsonwebtoken": "^9.0.1",
"lodash-es": "^4.17.21",
"nanoid": "^4.0.2",
"openai": "^4.4.0",
"winston": "^3.10.0",
"ws": "^8.13.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash-es": "^4.17.8",
"@types/node": "^20.5.3",
"@types/ws": "^8.5.5",
"esbuild": "^0.19.2",
"nodemon": "^3.0.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=16.0.0"
}
}