-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 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
{
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"envalid": "^7.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"http-errors": "^2.0.0",
"module-alias": "^2.2.3",
"mongodb": "^5.7.0",
"mongoose": "^7.4.0"
},
"name": "backend",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"start": "nodemon src/server.ts",
"format": "npm run check-git-hooks && prettier --write .",
"lint-fix": "npm run check-git-hooks && (eslint --fix --cache --report-unused-disable-directives . || true) && prettier --write .",
"lint-check": "npm run check-git-hooks && eslint --cache --report-unused-disable-directives . && prettier --check .",
"prepare": "cd .. && husky",
"check-git-hooks": "cd .. && node .secret-scan/secret-scan.js -- --check-git-hooks"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"eslint-plugin-react": "^7.33.0",
"husky": "^9.0.11",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"_moduleAliases": {
"src": "src"
}
}