-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 915 Bytes
/
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
{
"name": "lotteryback",
"version": "0.0.0",
"private": true,
"scripts": {
"start:dev": "nodemon ./bin/www",
"start": "node app.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"dependencies": {
"axios": "^0.17.1",
"bcrypt": "^3.0.0",
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "~1.4.3",
"cron": "^1.3.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.2.0",
"mailgun-js": "^0.22.0",
"moment": "^2.21.0",
"morgan": "^1.9.0",
"pg": "^6.4.2",
"pg-hstore": "^2.3.2",
"require-text": "0.0.1",
"sequelize": "^4.37.4",
"serve-favicon": "^2.4.5"
},
"devDependencies": {
"dotenv": "^4.0.0",
"nodemon": "^1.17.2",
"openssl": "^1.1.0",
"prettier": "^1.11.1"
},
"nodemonConfig": {
"ignore": [
"client/*",
"emails/*"
]
}
}