-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "trading-bot-server",
"version": "1.0.0",
"main": "app.js",
"author": "Franco Giordani",
"scripts": {
"lint": "./node_modules/.bin/eslint ./routes ./src ./app.js --fix",
"test": "export NODE_ENV=test&& mocha --exit --reporter spec \"src/*/*.test.js\"",
"dev": "export NODE_ENV=development && nodemon app.js -L --exec \"npm run test && npm run lint && node\"",
"start": "export NODE_ENV=production && pm2 start app.js -i 1 -x --name 'trading-bot'",
"stop": "pm2 stop all",
"delete": "pm2 delete app"
},
"devDependencies": {
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"mocha": "6.2.2",
"nodemon": "^2.0.3",
"nyc": "^14.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.2",
"expo-server-sdk": "^3.5.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"helmet": "^3.22.0",
"http": "0.0.0",
"moment": "^2.25.1",
"nodemailer": "^6.4.6",
"nodemailer-smtp-transport": "^2.7.4",
"path": "^0.12.7",
"python-shell": "^2.0.0",
"rate-limit-redis": "^1.7.0",
"redis": "^2.8.0",
"request": "^2.88.2",
"url-parse": "^1.4.7",
"winston": "3.2.1"
}
}