-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.39 KB
/
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
38
39
40
41
42
43
{
"name": "fourth_ts_class",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "npx eslint && npx prettier . --write",
"lint-autofix": "npx eslint --fix && npx prettier . --write",
"dev": "npx eslint --fix && npx prettier . --write && tsc && node --env-file=.env.dev dist/index.js",
"prod": "npx eslint --fix && npx prettier . --write && tsc && node --env-file=.env.prod dist/index.js",
"build": "tsc",
"start": "node dist/index.js",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^4.21.1",
"fourth_ts_class": "file:",
"morgan": "^1.10.0",
"postgres": "^3.4.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/morgan": "^1.9.9",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"eslint": "^9.14.0",
"husky": "^8.0.0",
"prettier": "3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
}
}