-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "newsletter-api",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"scripts": {
"dev": "clear && ts-node-dev --respawn --exit-child src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"prepare": "husky install",
"commit": "git-cz"
},
"dependencies": {
"@prisma/client": "^4.2.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"helmet": "^5.1.1",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.7.8",
"validator": "^13.7.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^18.7.6",
"@types/nodemailer": "^6.4.5",
"@types/validator": "^13.7.5",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "3.3.0",
"husky": "^8.0.1",
"prisma": "^4.2.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}