forked from ganapathinuvem/registration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.19 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
{
"name": "registration",
"version": "1.14.0",
"description": "TBD",
"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"
},
"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": {
"@sendgrid/mail": "^6.2.1",
"@types/uuid": "^3.4.2",
"ajv": "^5.1.6",
"archiver": "^1.3.0",
"aws-sdk": "^2.83.0",
"body-parser": "^1.17.1",
"bowser": "^1.7.3",
"chalk": "^2.1.0",
"cheerio": "^1.0.0-rc.2",
"compression": "^1.6.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"cookie-signature": "^1.0.6",
"express": "^4.15.2",
"express-session": "^1.15.1",
"git-rev-sync": "^1.8.0",
"graphql": "^0.10.5",
"graphql-server-express": "^1.1.0",
"graphql-tools": "^1.2.2",
"graphql-typewriter": "git://github.com/illegalprime/graphql-typewriter.git#hacks",
"handlebars": "^4.0.6",
"json-schema-to-typescript": "^4.4.0",
"json2csv": "^3.7.3",
"marked": "^0.3.9",
"moment": "^2.21.0",
"moment-timezone": "^0.5.13",
"mongoose": "^4.10.3",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-github2": "^0.1.10",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"serve-static": "^1.12.1",
"striptags": "^3.0.1",
"sweetalert2": "^6.4.4",
"tmp": "0.0.33",
"uuid": "^3.1.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@types/archiver": "^0.15.37",
"@types/aws-sdk": "^2.7.0",
"@types/body-parser": "1.16.0",
"@types/chai": "^3.4.35",
"@types/chalk": "^0.4.31",
"@types/cheerio": "^0.22.2",
"@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.0",
"@types/express": "^4.0.35",
"@types/express-session": "0.0.32",
"@types/handlebars": "^4.0.32",
"@types/marked": "0.0.28",
"@types/mocha": "^2.2.40",
"@types/moment-timezone": "^0.2.34",
"@types/mongoose": "^4.7.18",
"@types/morgan": "^1.7.32",
"@types/multer": "^1.3.2",
"@types/node": "^8.0.8",
"@types/passport": "^0.3.3",
"@types/passport-facebook": "^2.1.3",
"@types/passport-local": "^1.0.29",
"@types/serve-static": "^1.7.31",
"@types/supertest": "^2.0.0",
"@types/tmp": "0.0.33",
"@types/whatwg-fetch": "0.0.33",
"chai": "^4.0.0",
"mocha": "^3.4.2",
"supertest": "^3.0.0",
"tslint": "^5.4.3",
"tslint-language-service": "^0.9.6",
"typescript": "^2.5.2"
}
}