-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.26 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.26 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
{
"name": "project-2-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"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": "",
"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/base-64": "^1.0.0",
"@types/bcrypt": "^5.0.0",
"@types/fluent-ffmpeg": "^2.1.21",
"@types/graphql-upload": "^16.0.0",
"@types/imagemin": "^8.0.1",
"@types/imagemin-mozjpeg": "^8.0.1",
"@types/lodash": "^4.14.191",
"@types/module-alias": "^2.0.1",
"@types/mongoose": "^5.11.97",
"@types/nodemailer": "^6.4.7",
"@types/utf8": "^3.0.1",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.4",
"graphql-tools": "^6.0.12",
"node-fetch": "2.6.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@graphql-tools/schema": "^8.3.5",
"apollo-server-express": "^3.12.0",
"base-64": "^1.0.0",
"bcrypt": "^5.1.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bull": "^4.10.4",
"cors": "^2.8.5",
"cpy-cli": "^3.1.1",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"firebase-admin": "^11.5.0",
"fluent-ffmpeg": "^2.1.2",
"graphql": "^16.6.0",
"graphql-import": "^1.0.2",
"graphql-redis-subscriptions": "^2.6.0",
"graphql-subscriptions": "^2.0.0",
"graphql-upload": "^16.0.2",
"graphql-ws": "^5.12.0",
"imagemin": "^8.0.1",
"imagemin-mozjpeg": "^10.0.0",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongoose": "^7.0.3",
"nodemailer": "^6.9.1",
"path": "^0.12.7",
"stream-to-buffer": "^0.1.0",
"utf8": "^3.0.0",
"uuid": "^9.0.0",
"ws": "^8.13.0"
}
}