-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 752 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 752 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
{
"name": "tw-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npx nodemon",
"build": "rimraf ./dist && tsc && tsc-alias",
"start": "node dist/index.js",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
},
"lint-staged": {
"src/**/*.{ts,js,json}": "prettier package.json --write --single-quote --trailing-comma all --tab-width 2"
},
"dependencies": {
"@types/express": "^4.17.21",
"express": "^4.18.2"
}
}