-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.93 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
{
"name": "tedxits2023-server",
"version": "1.0.0",
"main": "src/index.js",
"prisma": {
"seed": "ts-node src/seed/seed.ts"
},
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon -L src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"lint": "eslint --fix --ignore-path .eslintignore --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"lint-staged": {
"*.{js,ts}": [
"yarn format",
"yarn lint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tedxits2023/backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tedxits2023/backend/issues"
},
"homepage": "https://github.com/tedxits2023/backend#readme",
"description": "",
"dependencies": {
"@prisma/client": "^4.12.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/nodemailer-express-handlebars": "^4.0.2",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-handlebars": "^7.0.7",
"formidable": "^2.1.1",
"http-status-codes": "^2.2.0",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"nodemailer": "^6.9.1",
"nodemailer-express-handlebars": "^6.1.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/nodemailer": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"prisma": "^4.12.0",
"typescript": "^5.0.3"
}
}