-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "etf",
"version": "1.0.0",
"description": "Bot for master paper",
"main": "server/server.js",
"scripts": {
"watch": "nodemon server/server.js --ignore --public",
"assets": "webpack -w --display-max-modules 0",
"start": "concurrently 'npm run watch' 'npm run assets' --names '☔ ⚓ ⚡ 📜' --prefix name",
"prod": "node ./server/server.js",
"test": "./node_modules/mocha/bin/mocha",
"push": "sudo git add . && sudo git commit -m \":rocket:\" && sudo git push heroku master && sudo heroku logs -t -s app"
},
"author": "Lazar Vasic",
"license": "ISC",
"dependencies": {
"apiai": "^4.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"cron": "^1.4.1",
"dashbot": "^9.9.2",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"flash": "^1.1.0",
"moment": "^2.22.2",
"mongoose": "^5.2.10",
"nodemailer": "^4.6.8",
"path": "^0.12.7",
"pug": "^2.0.3",
"request": "^2.88.0",
"string-similarity": "^1.2.1",
"uuid": "^3.3.2",
"validator": "^10.7.1",
"webpack": "^4.17.1",
"winston": "^3.0.0"
},
"devDependencies": {
"mocha": "^5.2.0"
}
}