-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.88 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.88 KB
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
{
"name": "book-backend-tranning",
"version": "1.0.1",
"description": "",
"engines": {
"node": "14.x"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"gen:types": "graphql-codegen",
"dev": "nodemon src/index.ts",
"build": "rimraf dist && tsc --project tsconfig.json && npm run gen:types",
"start": "node dist/src/index.js",
"postbuild": "cpy src/graphql/schema/*.graphql dist/src/graphql/schema",
"migrate:up": "migrate-mongo up",
"migrate:down": "migrate-mongo down"
},
"keywords": [],
"author": "thanhdev.crelife@gmail.com",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "^2.3.0",
"@graphql-codegen/typescript-graphql-request": "^4.3.1",
"@graphql-codegen/typescript-operations": "^2.2.1",
"@graphql-codegen/typescript-resolvers": "^2.4.2",
"@types/bcrypt": "^5.0.0",
"@types/bluebird": "^3.5.36",
"@types/body-parser": "^1.19.2",
"@types/bull": "^3.15.6",
"@types/faker": "^6.6.9",
"@types/graphql": "^14.5.0",
"@types/graphql-upload": "^8.0.7",
"@types/imagemin": "^8.0.0",
"@types/imagemin-mozjpeg": "^8.0.1",
"@types/ioredis": "^4.28.1",
"@types/lodash": "^4.14.178",
"@types/migrate-mongo": "^8.1.3",
"@types/mkdirp": "^1.0.2",
"@types/module-alias": "^2.0.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@graphql-tools/schema": "^8.3.5",
"@types/nodemailer": "^6.4.4",
"apollo-server": "^3.5.0",
"apollo-server-express": "^3.5.0",
"aws-sdk": "^2.1038.0",
"base-64": "^1.0.0",
"bcrypt": "^5.0.1",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bull": "^4.1.1",
"cors": "^2.8.5",
"cpy-cli": "^3.1.1",
"dayjs": "^1.11.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"faker": "^6.6.6",
"firebase-admin": "^10.0.0",
"fluent-ffmpeg": "^2.1.2",
"graphql": "^16.0.1",
"graphql-import": "^1.0.2",
"graphql-redis-subscriptions": "^2.4.2",
"graphql-request": "^3.6.1",
"graphql-subscriptions": "^2.0.0",
"graphql-tools": "^6.0.12",
"graphql-upload": "^13.0.0",
"graphql-ws": "^5.6.3",
"imagemin": "^7.0.0",
"imagemin-mozjpeg": "^8.0.0",
"ioredis": "^4.28.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"migrate": "^1.7.0",
"migrate-mongo": "^8.2.3",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"mongodb": "^4.2.1",
"mongoose": "^6.2.4",
"nodemailer": "^6.7.1",
"nodemon": "^2.0.15",
"redis-dataloader": "^1.0.2",
"stream-to-buffer": "^0.1.0",
"utf8": "^3.0.0",
"uuid": "^8.3.2",
"wait-on": "^6.0.0",
"ws": "^8.5.0"
}
}