-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 948 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 948 Bytes
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
{
"name": "topboard-backend",
"version": "1.0.0",
"main": "src/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/server.ts",
"build": "tsc",
"start": "node src/server.js",
"lint": "pnpm eslint .",
"format": "prettier --write .",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/express": "^5.0.3",
"@types/helmet": "^4.0.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.10",
"express": "^5.1.0",
"helmet": "^8.1.0",
"mongoose": "^8.17.1",
"morgan": "^1.10.1",
"nodemon": "^3.1.9",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.33.0",
"husky": "^9.1.7",
"prettier": "3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1"
}
}