-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.94 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
{
"name": "turtle",
"version": "1.0.0",
"description": "🐢+🍐 REST services built upon hackfiu/pear",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"dev": "backpack dev",
"start": "yarn build && pm2 start build/main.js --name Turtle",
"restart": "yarn build && pm2 restart Turtle",
"build": "backpack build",
"stop": "pm2 stop Turtle",
"delete": "pm2 delete Turtle",
"logs": "tail -n 50 ./logs/turtle.log",
"hydrate": "node ./src/utils/hydrate.js",
"lint": "eslint --fix"
},
"dependencies": {
"axios": "^0.19.0",
"backpack-core": "^0.8.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^8.0.0",
"expo-server-sdk": "^3.3.0",
"express": "^4.16.4",
"express-handlebars": "^3.0.0",
"googleapis": "27",
"helmet": "^3.14.0",
"jsonwebtoken": "^8.5.1",
"mailchimp": "^1.2.1",
"mailchimp-api-v3": "^1.13.0",
"moment": "^2.24.0",
"mongoose": "^5.7.5",
"multer": "^1.4.1",
"nodemailer": "^4.7.0",
"nodemailer-express-handlebars": "^3.0.0",
"nodemailer-mailgun-transport": "^1.4.0",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"pm2": "^3.4.1",
"request": "^2.88.0",
"socket.io": "^2.2.0",
"url-parse": "^1.4.4",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.5.1"
},
"devDependencies": {
"all-contributors-cli": "^6.9.1",
"babel-eslint": "^10.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"prettier": "^1.18.2"
}
}