-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
117 lines (117 loc) · 3.67 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "express-graphql-starterkit",
"version": "0.0.1",
"description": "Express graphql starterkit using type-graphql and apollo server",
"main": "app.js",
"files": [
"dist/**/*"
],
"scripts": {
"cleanup": "rimraf dist",
"build": "npm run cleanup && tsc && tsc-alias",
"start:pm2": "pm2 start dist/configs/pm2.config.js",
"start:pm2:docker": "pm2-runtime dist/configs/pm2.config.js",
"start": "node dist/app.js",
"dev": "tsnd --poll --respawn --watch src/**/*.{ts} -r tsconfig-paths/register src/app.ts",
"kmig": "npx knex --cwd src/configs --knexfile knexfile.ts migrate:latest",
"kroll": "npx knex --cwd src/configs --knexfile knexfile.ts migrate:rollback",
"klist": "npx knex --cwd src/configs --knexfile knexfile.ts migrate:list",
"krun": "npx knex --cwd src/configs --knexfile knexfile.ts seed:run"
},
"author": {
"name": "restu wahyu saputra",
"email": "[email protected]",
"url": "https://github.com/restuwahyu13"
},
"engines": {
"node": "16",
"npm": "8"
},
"maintainers": [
"Restu Wahyu Saputra"
],
"repository": {
"type": "git",
"url": "https://github.com/restuwahyu13/express-graphql-starterkit"
},
"license": "MIT",
"dependencies": {
"@graphql-tools/schema": "^8.3.1",
"apollo-errors": "^1.9.0",
"apollo-server-express": "^3.5.0",
"bcryptjs": "^2.4.3",
"body-parser-graphql": "^1.1.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"express-async-errors": "^3.1.1",
"express-http-error": "^0.5.0",
"express-rate-limit": "^6.2.0",
"express-slow-down": "^1.4.0",
"graphql": "^15.8.0",
"graphql-middleware": "^6.1.12",
"graphql-scalars": "^1.10.0",
"graphql-upload": "^13.0.0",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
"http-graceful-shutdown": "^3.1.5",
"http-status": "^1.5.0",
"is-any-type": "^0.0.4",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.15",
"moment": "^2.29.1",
"objection": "^3.0.1",
"pg": "^8.7.1",
"reusify": "^1.0.4",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/eslint": "^8.4.1",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^6.0.0",
"@types/express-slow-down": "^1.3.2",
"@types/graphql": "^14.5.0",
"@types/graphql-upload": "^8.0.10",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.2",
"@types/http-graceful-shutdown": "^2.3.0",
"@types/http-status": "^1.1.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/knex": "^0.16.1",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.12",
"@types/pg": "^8.6.4",
"@types/prettier": "^2.4.3",
"@types/reflect-metadata": "^0.1.0",
"@types/rimraf": "^3.0.2",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^4.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-security": "^1.4.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tsc-alias": "^1.5.0",
"tsconfig-paths": "^3.12.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"winston": "^3.4.0"
}
}