-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.56 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.56 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
{
"name": "clowndinary",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:single": "node ./bin/www-single",
"start:dev": "NODE_ENV=development node ./bin/www",
"start:prod": "NODE_ENV=production node ./bin/www",
"start:safe": "NODE_CLUSTERS=1 node ./bin/www",
"start:web-only": "WORKER_TYPE=web node ./bin/www",
"pm2:start": "pm2 start ecosystem.config.json --only clowndinary-web",
"pm2:start:prod": "pm2 start ecosystem.config.json --only clowndinary-web --env production",
"pm2:start:clustered": "pm2 start ecosystem.config.json --only clowndinary-clustered",
"pm2:start:clustered:prod": "pm2 start ecosystem.config.json --only clowndinary-clustered --env production",
"pm2:start:all": "pm2 start ecosystem.config.json",
"pm2:stop": "pm2 stop all",
"pm2:restart": "pm2 restart all",
"pm2:delete": "pm2 delete all",
"pm2:logs": "pm2 logs",
"pm2:monitor": "pm2 monit"
},
"dependencies": {
"basic-ftp": "^5.0.5",
"bcrypt": "^6.0.0",
"bunnycdn-storage": "^1.1.0",
"cloudinary": "^2.7.0",
"cookie-parser": "~1.4.4",
"crypto-js": "^4.2.0",
"debug": "~2.6.9",
"dotenv": "^17.2.1",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-ejs-layouts": "^2.5.1",
"express-mysql-session": "^3.0.3",
"express-session": "^1.18.2",
"http-errors": "~1.6.3",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"mysql2": "^3.14.3",
"node-bunny-storage": "^2.2.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"pm2": "^5.3.0"
}
}