-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "gql-app",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "nodemon -q -w src src/main.ts",
"build": "rimraf dist && swc src -d dist",
"start": "pm2-runtime start ecosystem.config.js --env production",
"prod": "pm2 start ecosystem.config.js",
"kill": "pm2 kill",
"monit": "pm2 monit",
"gen": "graphql-codegen",
"test": "jest",
"format": "prettier --write ."
},
"dependencies": {
"@graphql-tools/load-files": "^6.6.0",
"@graphql-tools/merge": "^8.3.1",
"@graphql-tools/schema": "^8.5.1",
"apollo-server-core": "^3.10.0",
"apollo-server-express": "^3.10.0",
"dataloader": "^2.1.0",
"express": "^4.18.1",
"express-rate-limit": "^6.5.1",
"graphql": "^16.5.0",
"graphql-depth-limit": "^1.1.0",
"graphql-scalars": "^1.17.0",
"graphql-shield": "^7.5.0",
"graphql-upload": "^14.0.0",
"pm2": "^5.2.0"
},
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@graphql-codegen/cli": "^2.11.4",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-resolvers": "^2.7.3",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.224",
"@swc/jest": "^0.2.22",
"@types/express": "^4.17.13",
"@types/graphql-depth-limit": "^1.1.3",
"@types/graphql-upload": "^8.0.11",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"dotenv": "^16.0.1",
"graphql-middleware": "^6.1.32",
"jest": "^28.1.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4"
}
}