-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.61 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
{
"name": "checkin2",
"version": "3.0.0",
"description": "Check-in for HackGT events",
"main": "app.js",
"scripts": {
"pretest": "npm run build",
"test": "./node_modules/mocha/bin/mocha",
"build": "./build.sh",
"start": "node server/app.js",
"build-start": "npm run build && npm start"
},
"license": "MIT",
"author": {
"name": "Ryan Petschek",
"email": "[email protected]",
"url": "https://github.com/petschekr"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.9",
"apollo-client": "^2.3.1",
"apollo-link-http": "^1.5.2",
"apollo-link-ws": "^1.0.7",
"body-parser": "^1.17.1",
"chalk": "^2.3.2",
"cheerio": "^0.22.0",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"csv-parse": "^4.4.6",
"escape-string-regexp": "^1.0.5",
"express": "^4.15.2",
"graphql": "^0.12.3",
"graphql-server-express": "^1.1.2",
"graphql-subscriptions": "^0.5.8",
"graphql-tag": "^2.4.2",
"graphql-tools": "^2.21.0",
"handlebars": "^4.3.0",
"json2csv": "^3.7.3",
"material-components-web": "^0.13.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"npm": "^6.14.6",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"serve-static": "^1.12.1",
"subscriptions-transport-ws": "^0.9.1",
"sweetalert2": "^7.33.1",
"ws": "^3.2.0"
},
"devDependencies": {
"@types/body-parser": "0.0.33",
"@types/chai": "^3.4.34",
"@types/cheerio": "^0.22.1",
"@types/compression": "0.0.33",
"@types/cookie-parser": "^1.3.30",
"@types/csv-parse": "^1.1.6",
"@types/escape-string-regexp": "0.0.31",
"@types/express": "^4.0.34",
"@types/graphql": "^0.12.3",
"@types/handlebars": "^4.0.32",
"@types/mocha": "^2.2.38",
"@types/mongoose": "^5.2.12",
"@types/morgan": "^1.7.33",
"@types/multer": "0.0.32",
"@types/node": "^8.0.8",
"@types/qwest": "^1.7.28",
"@types/request": "^2.0.3",
"@types/request-promise-native": "^1.0.7",
"@types/serve-static": "^1.7.31",
"@types/supertest": "^2.0.0",
"@types/ws": "^3.2.0",
"apollo-codegen": "^0.17.0-alpha.11",
"browserify": "^14.4.0",
"chai": "^3.5.0",
"gql2ts": "^1.2.1",
"graphql-typewriter": "git://github.com/illegalprime/graphql-typewriter.git#hacks",
"mocha": "^3.2.0",
"supertest": "^3.0.0",
"typescript": "^2.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackGT/checkin2.git"
},
"bugs": {
"url": "https://github.com/HackGT/checkin2/issues"
},
"homepage": "https://checkin.hack.gt",
"private": true
}