-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (65 loc) · 1.72 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
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"watch-ts": "tsc -w",
"watch-node": "nodemon -r dotenv/config dist/index.js",
"commit": "cz",
"import:data": "node dist/seeder.js"
},
"dependencies": {
"@google-cloud/storage": "^5.8.5",
"@sendgrid/mail": "^7.4.4",
"@typegoose/typegoose": "^7.6.0",
"apollo-server-express": "^2.24.0",
"argon2": "^0.27.2",
"async-redis": "^1.1.7",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"chalk": "^4.1.1",
"class-validator": "^0.13.1",
"cloudinary": "^1.26.1",
"connect-mongo": "^4.4.1",
"connect-redis": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-session": "^1.17.1",
"graphql": "^15.5.0",
"graphql-upload": "^12.0.0",
"hot-shots": "^8.3.1",
"ioredis": "^4.27.6",
"mongoose": "^5.12.9",
"nodemailer": "^6.6.0",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"slugify": "^1.5.3",
"type-graphql": "^1.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/async-redis": "^1.1.1",
"@types/bluebird": "^3.5.35",
"@types/connect-redis": "^0.0.16",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/graphql": "^14.5.0",
"@types/graphql-upload": "^8.0.5",
"@types/node": "^15.3.0",
"@types/nodemailer": "^6.4.1",
"@types/redis": "^2.8.28",
"@types/uuid": "^8.3.0",
"cz-conventional-changelog": "3.3.0",
"nodemon": "^2.0.7",
"typescript": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}