-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.34 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
{
"name": "fairland-resort-api",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"start": "node dist/server",
"prestart": "npx prisma migrate deploy",
"build": "tsc --build",
"start:dev": "npm-run-all serve codegen",
"serve": "nodemon src/server --ext graphql,ts",
"test": "npx jest --runInBand --watchAll",
"codegen": "graphql-codegen --config codegen.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.427.0",
"@envelop/apollo-tracing": "^5.0.3",
"@graphql-tools/graphql-file-loader": "^7.3.7",
"@graphql-tools/load": "^7.5.5",
"@graphql-tools/merge": "^8.2.1",
"@graphql-tools/schema": "^8.3.1",
"@prisma/client": "^5.13.0",
"@sendgrid/mail": "^7.6.0",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"graphql": "^16.6.0",
"graphql-middleware": "^6.1.13",
"graphql-shield": "^7.5.0",
"graphql-yoga": "^3.3.0",
"is-valid-coordinates": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"npm-run-all": "^4.1.5",
"prisma": "^5.8.0",
"slugify": "^1.6.5",
"validator": "^13.7.0"
},
"devDependencies": {
"@apollo/client": "^3.5.10",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-resolvers": "2.6.1",
"@graphql-eslint/eslint-plugin": "^3.8.0",
"@parcel/watcher": "^2.3.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.13",
"@types/graphql-upload": "^8.0.11",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/module-alias": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.10",
"@types/validator": "^13.11.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"babel-jest": "^29.5.0",
"cross-fetch": "^3.1.5",
"eslint": "^8.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"graphql-playground-middleware-express": "^1.7.23",
"jest": "^29.5.0",
"nodemon": "^2.0.15",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
}
}