-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.12 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.12 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
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": "first-inu-bridge",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "nodemon --exec babel-node --presets babel-preset-env ./src/server.js",
"test": " mocha --require babel-core/register tests/ --exit",
"models": "sequelize-auto -o /src/models -d template -h localhost -u root -p 3306 -e mysql",
"clean": "rm -rf build && mkdir build",
"build-babel": "babel -d ./build ./src -s",
"build": "npm run clean && npm run build-babel",
"deploy": "sudo pm2 kill && npm run build && sudo NODE_ENV=production pm2 start ./build/server.js"
},
"dependencies": {
"adm-zip": "^0.4.13",
"async": "^3.1.0",
"aws-sdk": "^2.771.0",
"babel-cli": "^6.26.0",
"babel-node": "0.0.1-security",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.17.0",
"bcrypt": "^5.0.0",
"body-parser": "~1.18.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"cron": "^1.7.2",
"crypto-random-string": "^3.0.1",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.15.5",
"express-session": "^1.15.6",
"fs": "0.0.1-security",
"google-auth-library": "^6.1.1",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.15",
"migrate-mongo": "^8.2.3",
"mocha": "^5.2.0",
"mongodb": "^4.2.1",
"mongoose": "^6.1.1",
"morgan": "~1.9.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"mysql": "^2.15.0",
"mysql2": "^1.7.0",
"node-fetch": "^2.6.1",
"node-html-to-image": "^3.1.0",
"nodemailer": "^4.6.2",
"nodemon": "^1.19.3",
"path": "^0.12.7",
"pdfkit": "^0.11.0",
"plaid": "^4.3.0",
"sequelize": "^4.28.6",
"sequelize-auto": "^0.4.29",
"serve-favicon": "~2.4.5",
"sinon": "^6.1.5",
"socket.io": "^2.3.0",
"stripe": "^7.14.0",
"uuid": "^8.3.2",
"web3": "^1.6.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.6.1",
"sequelize-cli": "^5.5.1"
},
"babel": {
"presets": [
"env"
]
}
}