-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 842 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 842 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
{
"name": "billingapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsc-watch --onSuccess \"node dist/app.js\"",
"build": "tsc",
"start": "node dist/app.js",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.3",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-no-loops": "^0.4.0",
"eslint-plugin-prettier": "^5.5.1",
"prettier": "^3.6.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"dependencies": {
"dotenv": "^17.2.0",
"express": "^5.1.0",
"winston": "^3.17.0"
}
}