-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
116 lines (116 loc) · 3.59 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "registration",
"version": "3.4.0",
"description": "Powerful and extensible registration system for hackathons and other large events",
"main": "server/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "bash ./build.sh",
"quickbuild": "./node_modules/typescript/bin/tsc -p server/ && ./node_modules/typescript/bin/tsc -p client/",
"start": "node server/app.js",
"build-start": "npm run build && npm start",
"qb-start": "npm run quickbuild && npm start",
"debug": "node --nolazy --inspect=9230 server/app.js"
},
"author": {
"name": "Ryan Petschek",
"email": "[email protected]",
"url": "https://github.com/petschekr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackGT/registration.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/HackGT/registration/issues"
},
"homepage": "https://github.com/HackGT/registration#readme",
"private": true,
"dependencies": {
"@google-cloud/storage": "^4.3.0",
"@handlebars/allow-prototype-access": "^1.0.3",
"@sendgrid/mail": "^6.2.1",
"agenda": "^2.0.2",
"ajv": "^5.5.2",
"archiver": "^1.3.0",
"aws-sdk": "^2.255.1",
"body-parser": "^1.18.3",
"bowser": "^1.9.3",
"chalk": "^2.4.1",
"compression": "^1.7.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.1",
"cookie-parser": "^1.4.3",
"cookie-signature": "^1.1.0",
"easymde": "^2.5.1",
"email-templates": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.1",
"git-rev-sync": "^1.12.0",
"graphql": "^0.10.5",
"graphql-server-express": "^1.3.6",
"graphql-tools": "^1.2.2",
"graphql-typewriter": "git://github.com/illegalprime/graphql-typewriter.git#hacks",
"handlebars": "^4.7.6",
"html-to-text": "^5.1.1",
"json-schema-to-typescript": "^4.6.5",
"json2csv": "^3.11.5",
"marked": "^1.1.1",
"moment": "^2.22.2",
"moment-timezone": "^0.5.17",
"mongoose": "^5.4.19",
"morgan": "^1.9.1",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-oauth2": "^1.5.0",
"qr-image": "^3.2.0",
"request": "^2.88.0",
"serve-static": "^1.13.2",
"striptags": "^3.1.1",
"sweetalert2": "^6.11.5",
"tmp": "0.0.33",
"uuid": "^3.2.1",
"whatwg-fetch": "^2.0.4"
},
"devDependencies": {
"@types/agenda": "^2.0.5",
"@types/archiver": "^0.15.37",
"@types/aws-sdk": "^2.7.0",
"@types/body-parser": "1.16.0",
"@types/chai": "^3.4.35",
"@types/codemirror": "0.0.71",
"@types/compression": "0.0.33",
"@types/connect-flash": "0.0.31",
"@types/connect-mongo": "0.0.32",
"@types/cookie-parser": "^1.4.0",
"@types/cookie-signature": "^1.0.1",
"@types/express": "^4.16.0",
"@types/express-session": "0.0.32",
"@types/handlebars": "^4.0.38",
"@types/html-to-text": "^1.4.31",
"@types/marked": "1.1.0",
"@types/mocha": "^2.2.48",
"@types/moment-timezone": "^0.5.6",
"@types/mongodb": "^3.1.22",
"@types/mongoose": "^5.3.23",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.6",
"@types/node": "^11.11.3",
"@types/passport": "^1.0.0",
"@types/passport-oauth2": "^1.4.8",
"@types/qr-image": "^3.2.1",
"@types/request": "^2.48.2",
"@types/serve-static": "^1.13.2",
"@types/supertest": "^2.0.4",
"@types/tmp": "0.0.33",
"@types/uuid": "^3.4.3",
"@types/whatwg-fetch": "0.0.33",
"chai": "^4.0.0",
"mocha": "^5.2.0",
"supertest": "^3.1.0",
"tslint": "^5.14.0",
"tslint-language-service-ts3": "^1.0.0",
"typescript": "^3.9.7"
}
}