This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.94 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
{
"name": "express-graphql-typeorm-typescript-starter",
"version": "1.0.0",
"description": "This starter package uses typescript with express, graphql and typeorm for database mapping.",
"author": "",
"license": "MIT",
"keywords": [
"typescript",
"typeorm",
"graphql",
"express",
"node"
],
"scripts": {
"start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
"dev": "cross-env INLINE_RUNTIME_CHUNK=false NODE_ENV=development nodemon",
"dev2": "cross-env NODE_ENV=development ts-node src/server.ts",
"build": "tsc && npx tsc-alias",
"test": "jest --forceExit --detectOpenHandles",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint -- --fix",
"deploy:prod": "npm run build && pm2 start ecosystem.config.js --only prod",
"deploy:dev": "pm2 start ecosystem.config.js --only dev"
},
"dependencies": {
"bcrypt": "^5.0.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"compression": "^1.7.4",
"config": "^3.3.6",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"envalid": "^7.1.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.5.3",
"hpp": "^0.2.3",
"jest": "^27.0.6",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.6.0",
"pm2": "^5.1.0",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.0.0",
"swagger-ui-express": "^4.1.6",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typeorm": "^0.2.34",
"typescript": "^4.3.5",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.1",
"@types/config": "^0.0.39",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.11",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/hpp": "^0.2.1",
"@types/jest": "^26.0.24",
"@types/jsonwebtoken": "^8.5.4",
"@types/morgan": "^1.9.3",
"@types/node": "^16.0.1",
"@types/supertest": "^2.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"node-config": "^0.0.2",
"node-gyp": "^8.1.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"supertest": "^6.1.3",
"tsconfig-paths": "^3.10.1"
},
"repository": {
"type":"git",
"url":"[email protected]:sugamkarki/node-graphql-typeorm-template.git"
},
"bugs":{
"url":"[email protected]:sugamkarki/node-graphql-typeorm-template/issues"
},
"homepage": "[email protected]:sugamkarki/node-graphql-typeorm-template#readme"
}