-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 930 Bytes
/
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
{
"scripts": {
"start": "npm run build && node --max-old-space-size=4096 build/server.js",
"build": "rimraf ./build && tsc",
"start:dev": "npx nodemon --max-old-space-size=4096",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.7.1",
"@types/request-promise-native": "^1.0.19",
"@types/uuid": "^9.0.4",
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"googleapis": "^123.0.0",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.4.2",
"nodemon": "^3.0.1",
"openai": "^3.3.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"aws-sdk": "^2.1463.0",
"request-promise-native": "^1.0.9",
"uuidv4": "^6.2.13"
}
}