This repository has been archived by the owner on Feb 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.08 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
72
73
74
{
"name": "virtualgrade",
"version": "1.0.0",
"description": "Node GraphQL endpoint for Virtual Grade",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"watch:build": "tsc --watch",
"watch:server": "nodemon './dist/src/index.js' --watch './dist'",
"start": "npm-run-all clean build --parallel watch:build watch:server --print-label",
"test": "snyk test",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"build:webpack": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CaerusKaru/node-virtualgrade.git"
},
"author": "Adam Plumer",
"license": "MIT",
"bugs": {
"url": "https://github.com/CaerusKaru/node-virtualgrade/issues"
},
"homepage": "https://github.com/CaerusKaru/node-virtualgrade#readme",
"dependencies": {
"@types/bookshelf": "^0.9.9",
"@types/hapi": "^17.6.3",
"@types/knex": "^0.14.26",
"@types/node": "^9.6.36",
"bluebird": "^3.5.3",
"bookshelf": "^0.13.3",
"boom": "^7.2.2",
"concurrently": "^3.6.1",
"good": "^8.1.1",
"good-console": "^7.1.0",
"good-squeeze": "^5.1.0",
"graphql": "^0.13.2",
"graphql-server-hapi": "^1.4.0",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^2.24.0",
"hapi": "^17.7.0",
"hapi-auth-cookie-jwt": "^3.0.0",
"hapi-auth-jwt": "^4.0.0",
"jsonwebtoken": "^8.3.0",
"knex": "^0.14.6",
"ldapjs": "^1.0.2",
"minio": "^4.0.0",
"node-uuid": "^1.4.8",
"nodemon": "^1.18.6",
"pg": "^7.6.1",
"reflect-metadata": "^0.1.12",
"snyk": "^1.108.2",
"subscriptions-transport-ws": "^0.9.15",
"typeorm": "^0.1.21",
"typescript": "^2.9.2",
"uuid": "^3.3.2",
"webpack": "^4.25.1",
"webpack-node-externals": "^1.7.2"
},
"snyk": true,
"devDependencies": {
"@types/boom": "^7.2.1",
"@types/zen-observable": "^0.5.4",
"apollo-link": "^1.2.3",
"event-stream": "^3.3.4",
"hapi-compat": "^1.1.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"ts-loader": "^4.5.0",
"ts-node": "^5.0.1"
}
}