-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "dev-momee",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec babel-node src/index.js --watch",
"start": "node dist/index.js",
"prestart": "npm run build",
"clean": "rm -rf dist",
"build": "npm run clean && npx babel ./src --out-dir dist --copy-files",
"start:pm2": "pm2 start dist/index.js --name prod-momee"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/node": "^7.24.6",
"@babel/preset-env": "^7.24.6"
},
"dependencies": {
"@google-cloud/storage": "^7.11.2",
"@prisma/client": "^5.14.0",
"@tensorflow/tfjs-node": "^4.19.0",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"google-auth-library": "^9.10.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.45",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"nodemailer": "^6.9.13",
"prisma": "^5.14.0",
"slugify": "^1.6.6",
"winston": "^3.13.0"
}
}