-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
{
"name": "nodejs-backend-base",
"version": "0.0.0",
"description": "Node.js application base - 🚀 bootstrappable, reusable, scalable.",
"main": "server.js",
"type": "module",
"scripts": {
"test": "mocha --timeout 3000 'dist/tests/**/*.js'",
"serve": "tsc-watch --noClear --onSuccess 'node --trace-uncaught bin/tsc-ok.js' --onFailure 'node bin/tsc-err.js'",
"build": "tsc -p tsconfig.json; node bin/tsc-ok.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muhammad-bin-zafar/nodejs-base-application.git"
},
"keywords": [
"nodejs",
"backend",
"express"
],
"author": {
"name": "Muhammad Bin Zafar",
"email": "muhammad@segwitz.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/muhammad-bin-zafar/nodejs-base-application/issues"
},
"homepage": "https://github.com/muhammad-bin-zafar/nodejs-base-application#readme",
"devDependencies": {
"@sequelize/core": "^7.0.0-alpha.10",
"@types/express": "^4.17.13",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@types/nodemailer": "^6.4.4",
"@types/sound-play": "^1.1.0",
"@types/validator": "^13.7.3",
"ansi-html-community": "^0.0.8",
"husky": "^8.0.1",
"release-it": "^15.1.1",
"sequelize-cli": "^6.4.1",
"sound-play": "^1.1.0",
"tsc-alias": "^1.6.11",
"typesafe-joi": "^2.1.0",
"zx": "^7.0.2"
},
"dependencies": {
"@release-it/conventional-changelog": "^5.0.0",
"ajv": "^8.11.0",
"chalk": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-validation": "^1.0.2",
"glob": "^8.0.3",
"helmet": "^5.1.0",
"hide-secrets": "^2.0.0",
"joi": "^14.3.1",
"lodash": "^4.17.21",
"nodemailer": "^6.7.5",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"sequelize-typescript": "^2.1.3",
"sqlite3": "^5.0.8",
"winston": "^3.7.2"
}
}