forked from hatchways/team-carbonara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"debug": "nodemon --inspect ./bin/www",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --exit --timeout 30000",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"dependencies": {
"@sendgrid/mail": "^7.0.1",
"connect-mongo": "^3.2.0",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.0.0",
"express": "~4.17.1",
"express-session": "^1.17.0",
"google-auth-library": "^6.0.0",
"googleapis": "^48.0.0",
"http-errors": "~1.6.3",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.28",
"mongodb": "^3.5.5",
"mongoose": "^5.9.6",
"morgan": "~1.9.1",
"nodemon": "^1.19.1",
"stripe": "^8.44.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"eslint-plugin-lodash": "^6.0.0",
"mocha": "^6.2.0",
"prettier": "2.0.2"
},
"engines": {
"node": "12.4.0"
}
}