-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
67
68
69
70
71
{
"name": "peer-tutoring-app",
"version": "1.0.0",
"description": "",
"main": "./bin/www.js",
"scripts": {
"test": "DEBUG=peer-tutoring:* NODE_ENV=test mocha --reporter spec tests/**.js --exit",
"start": "NODE_ENV=production node ./bin/www.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build",
"seed": "NODE_ENV=development node ./seed/index.js",
"dev": "concurrently --kill-others-on-fail \"npm run dev-server\" \"npm run dev-client\"",
"dev-server": "DEBUG=peer-tutoring:* NODE_ENV=development nodemon ./bin/www.js",
"dev-client": "cd client && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pierreTklein/peer-tutoring-app.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"@types/lodash": "^4.14.142",
"async-lock": "^1.2.2",
"bcrypt": "^3.0.6",
"concurrently": "^4.1.2",
"cookie-parser": "~1.4.3",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.5",
"cryptiles": "^4.1.3",
"debug": "~4.1.1",
"dotenv": "^6.2.0",
"express": "~4.16.0",
"express-validator": "^5.3.1",
"express-winston": "^2.6.0",
"handlebars": "^4.4.2",
"helmet": "^3.21.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.7.3",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"q": "^1.5.1",
"socket.io": "^2.3.0",
"winston": "^2.4.4"
},
"devDependencies": {
"@types/async-lock": "^1.1.1",
"@types/express": "^4.17.1",
"@types/google-cloud__storage": "^1.7.2",
"@types/mongodb": "^3.3.6",
"@types/mongoose": "^5.5.19",
"@types/multer": "^1.3.10",
"@types/passport": "^1.0.1",
"@types/socket.io": "^2.1.3",
"apidoc": "^0.17.7",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"jshint": "^2.10.2",
"jslint": "^0.12.1",
"mocha": "^5.2.0",
"nodemon": "^1.19.3"
},
"bugs": {
"url": "https://github.com/pierreTklein/peer-tutoring-app/issues"
},
"engines": {
"node": "v9.3.0"
},
"homepage": "https://github.com/pierreTklein/peer-tutoring-app#readme"
}