-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.22 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.22 KB
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": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"start": "node dist/index.js",
"test": "jest --verbose",
"lint": "eslint . --ext .ts",
"format": "prettier --write src/**/*.ts",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/isomorphic-fetch": "^0.0.39",
"@types/jest": "^29.5.11",
"@types/morgan": "^1.9.9",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.ts": "prettier --write --ignore-unknown"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^5.0.1",
"http-proxy-middleware": "^2.0.6",
"isomorphic-fetch": "^3.0.0",
"joi": "^17.13.1",
"mongodb": "^6.3.0",
"mongoose": "^8.1.1",
"morgan": "^1.10.0"
}
}