-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 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
{
"name": "api",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "node ./dist/app.js",
"build": "tsc",
"dev": "nodemon src/app.ts",
"lint": "eslint --ext .ts ./src",
"codegen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"apollo-datasource-rest": "^3.7.0",
"apollo-server-express": "^3.10.2",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"database": "*",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-rate-limit": "^6.6.0",
"graphql": "^15.3.0",
"graphql-fields": "^2.0.3",
"graphql-scalars": "^1.18.0",
"helmet": "^6.0.0",
"mongodb": "^4.17.0",
"pino": "^8.6.0",
"pino-pretty": "^9.1.0",
"reflect-metadata": "^0.1.13",
"tslib": "^2.4.0",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@graphql-codegen/cli": "2.12.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/graphql-fields": "^1.3.4",
"@types/node": "^18.7.18",
"eslint-config-custom-server": "*",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tsconfig": "*",
"@graphql-codegen/typescript-resolvers": "2.7.3",
"@graphql-codegen/typescript-operations": "2.5.3",
"@graphql-codegen/typescript-react-apollo": "3.3.3",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/introspection": "2.2.1"
}
}