-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (68 loc) · 1.82 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
{
"name": "my-node",
"version": "1.0.0",
"description": "starter",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.ts\"",
"build": "npx tsc",
"start": "node dist/index.js",
"postinstall": "npm run build",
"format": "prettier --write .",
"lint": "eslint src/**/*.ts",
"fix": "eslint src/**/*.ts --fix"
},
"husky": {
"hooks": {
"pre-commit": "eslint src/**/*.ts --fix && git add -A ."
}
},
"author": "noahbuilds",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.1.5",
"http-status": "^1.6.2",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"mongoose": "^7.0.2",
"morgan": "^1.10.0",
"nodemailer": "^6.9.1",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/inversify": "^2.0.33",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.3",
"@types/nodemailer": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"nodemon": "^2.0.21",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"_moduleAliases": {
"@/configs": "dist/configs",
"@/controllers": "dist/controllers",
"@/interfaces": "dist/interfaces",
"@/routes": "dist/routes",
"@/services": "dist/services",
"@/models": "dist/models"
}
}