-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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": "node-postgres-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"start": "ts-node src/index.ts",
"lint": "eslint --fix src/**/*.ts",
"format": "prettier --write ."
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@types/cors": "^2.8.17",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.3",
"prettier": "^3.2.4",
"reflect-metadata": "^0.2.1",
"ts-node-dev": "^2.0.0",
"typescript": "*"
},
"dependencies": {
"@types/express": "^4.17.21",
"ajv": "^8.12.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.2",
"express": "^4.18.2",
"pg": "^8.11.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"ts-node": "^10.9.2",
"typeorm": "^0.3.19"
}
}