-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.25 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
{
"name": "template-express-saas",
"version": "1.0.2",
"main": "src/app.ts",
"author": "DHN Chandan <php.chandan@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/app.ts",
"lint": "next lint",
"prettier": "prettier --list-different .",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"cz": "git cz",
"cz:install": "commitizen init cz-conventional-changelog --yarn --dev --exact",
"cz:force": "commitizen init cz-conventional-changelog --yarn --dev --exact --force",
"lint-staged": "lint-staged",
"prepare": "husky install",
"publish:np": "np --branch=master --message=\"chore: :bookmark: Publish v%s tag\"",
"publish:np:false": "np --branch=master --message=\"chore: :bookmark: Publish v%s tag\" --publish=false",
"token": "node -e \"console.log(crypto.randomBytes(32).toString('hex'))\""
},
"devDependencies": {
"@rushstack/eslint-config": "^2.6.2",
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/config": "^3.3.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/hpp": "^0.2.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/module-alias": "^2.0.1",
"@types/mongoose": "^5.11.97",
"@types/nanoid": "^3.0.0",
"@types/node": "^18.6.3",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.9",
"@types/passport-jwt": "^3.0.6",
"@types/passport-local": "^1.0.34",
"@types/pino": "^7.0.5",
"@types/uuid": "^8.3.4",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@typegoose/typegoose": "^9.11.0",
"apollo-server": "^3.10.0",
"argon2": "^0.28.7",
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"compression": "^1.7.4",
"config": "^3.3.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dayjs": "^1.11.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.5.0",
"helmet": "^5.1.1",
"hpp": "^0.2.3",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"mongoose": "^6.5.0",
"nanoid": "^4.0.0",
"nodemailer": "^6.7.7",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^7.1.2",
"pino": "^8.3.1",
"pino-pretty": "^8.1.0",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.5.1",
"type-graphql": "^1.1.1",
"uuid": "^8.3.2",
"zod": "^3.17.10"
},
"lint-staged": {
"*.(ts|tsx)": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/grid-momenta/template-express-saas"
},
"_moduleAliases": {
"@config": "config",
"@src": "src",
"@modules": "src/modules",
"@middlewares": "src/middlewares",
"@providers": "src/providers",
"@utils": "src/utils",
"@common": "src/common"
}
}