-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.9 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
61
62
63
64
65
66
{
"name": "mm-api",
"version": "0.1.0",
"private": true,
"engines": {
"node": "12.7.0",
"npm": "6.10.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha --require @babel/register 'src/test/**/*.js' --recursive --timeout 30000 --exit",
"start": "npm run prod",
"heroku-postbuild": "npm install --production",
"dev": "cross-env NODE_ENV=development DEBUG=mm-api:server npm run watch ./src/bin/www",
"prod": "npm run build && NODE_ENV=production node ./dist/bin/www",
"build": "npm run clean && babel ./src --out-dir dist",
"clean": "rimraf dist",
"watch": "nodemon --config ./nodemon.json --"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"adorable-avatars": "^0.4.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.22.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cron": "^1.8.2",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"googleapis": "^55.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.28",
"mongoose-unique-validator": "^2.0.3",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.11",
"npm-run-all": "^4.1.5",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"rimraf": "^2.7.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-arrays": "^2.2.0",
"chai-http": "^4.3.0",
"cross-env": "^5.2.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^7.2.0",
"nodemon": "^1.19.4"
}
}