-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 941 Bytes
/
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
{
"name": "api.thedp.com",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "Luke Tong <[email protected]>",
"scripts": {
"start": "ts-node src/app.ts",
"dev": "nodemon src/app.ts",
"format": "prettier --cache --write .",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.10",
"@types/express": "^4.17.20",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongodb": "^6.2.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}