-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.4 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "alopuapi",
"version": "1.0.0",
"description": "a trading platform",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node node/index.js",
"dev.dev": "npm run start.dev",
"start.dev": "pm2 start ecosystem.config.js --only alopu-api ; pm2 log alopu-api",
"start.prod": "pm2 start ecosystem.config.js --only prod-alopuapi ; pm2 log prod-alopuapi",
"restart.dev": "npm run delete.dev ; npm run start.dev",
"restart.prod": "npm run delete.prod ; npm run start.prod",
"stop.dev": "pm2 stop alopu-api",
"stop.prod": "pm2 stop prod-alopuapi",
"delete.dev": "pm2 delete alopu-api",
"delete.prod": "pm2 delete prod-alopuapi",
"dev": "pm2 start ecosystem.config.js --only alopu-api",
"ai": "node thing/index.js",
"log.dev": "pm2 log alopu-api",
"devandlog": "npm run dev ; pm2 log alopu-api",
"debug-pm2": "pm2 start node/debug.config.js",
"debug": "node --nolazy --inspect-brk=1234 node/index.js",
"commit": "git add . ; git commit -m 'did I do that?'",
"push": "npm run commit ; git push origin HEAD",
"pull": "git pull origin HEAD"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lopugit/alopuapi.git"
},
"author": "lopu",
"license": "ISC",
"bugs": {
"url": "https://github.com/lopugit/alopuapi/issues"
},
"homepage": "https://github.com/lopugit/alopuapi#readme",
"dependencies": {
"axios": "0.21.1",
"babel-register": "6.26.0",
"bcryptjs": "2.4.3",
"body-parser": "github:lopugit/body-parser#build-lopugit",
"circular-json": "0.4.0",
"compression": "1.7.4",
"connect-redis": "3.4.1",
"cors": "2.8.5",
"cross-env": "5.2.0",
"dotenv": "^16.0.0",
"express": "4.15.4",
"express-session": "1.15.5",
"faker": "4.1.0",
"firebase-admin": "6.5.1",
"fs": "0.0.1-security",
"google-auth-library": "1.6.1",
"http": "0.0.0",
"json-beautify": "1.0.1",
"json-pretty-html": "1.1.6",
"minimist": "1.2.0",
"moment": "2.24.0",
"mongodb": "^3.6.3",
"mongoose": "^5.11.14",
"monk": "7.3.4",
"node-gyp": "6.1.0",
"nodemailer": "6.4.16",
"object-hash": "1.3.1",
"path": "0.12.7",
"philosophy": "1.0.9",
"pug": "3.0.1",
"sentience": "0.0.9",
"smarts": "^1.0.234",
"socket.io": "^2.4.1",
"unconscious": "1.0.16",
"url": "0.11.0",
"uuid": "3.3.2"
}
}