-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.29 KB
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
{
"name": "project-superior",
"version": "0.1.0",
"private": true,
"description": "student hackathon bot",
"main": "server.js",
"scripts": {
"migrate:make": "knex migrate:make",
"migrate:latest": "knex migrate:latest",
"migrate:rollback": "knex migrate:rollback",
"seed:make": "knex seed:make",
"seed:run": "knex seed:run",
"generate-docs": "node_modules/.bin/jsdoc -c .jsdoc.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/great-lakes/project-superior.git"
},
"author": "Great Lakes Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/great-lakes/project-superior/issues"
},
"homepage": "https://github.com/great-lakes/project-superior#readme",
"dependencies": {
"apollo-server-restify": "^1.3.2",
"applicationinsights": "^1.0.1",
"dataloader": "^1.3.0",
"dotenv": "^4.0.0",
"graphql": "^0.12.3",
"knex": "^0.14.2",
"lodash": "^4.17.5",
"nodemailer": "^4.6.0",
"nodemailer-sparkpost-transport": "^2.0.0",
"objection": "^0.9.4",
"pg": "^7.4.1",
"restify": "^6.3.4",
"restify-cors-middleware": "^1.1.0",
"socket.io": "^2.0.4"
},
"devDependencies": {
"docdash": "^0.4.0",
"jsdoc": "^3.5.5"
}
}