-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "nice-gadgets-be",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "eslint **/*.ts --ignore-path .gitignore",
"fix": "npm run format && npm run lint -- --fix",
"prepare": "husky install"
},
"dependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.5.6",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.4.5",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@mate-academy/eslint-config": "^0.0.25",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"ts-node": "^10.9.1"
},
"lint-staged": {
"*.ts": "npm run lint"
},
"engines": {
"node": "16.x"
}
}