-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.54 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
44
45
46
47
48
49
{
"name": "node-express-tsoa-swagger-typeorm-starter",
"version": "1.0.0",
"repository": "https://github.com/WebExp0528/Node-Express-Tsoa-Swagger-TypeORM-Starter.git",
"author": "WebEXP0528 <web.dev0528@gmail.com>",
"license": "MIT",
"main": "./build/server.js",
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec-and-routes\"",
"start": "pm2-runtime start ecosystem.config.js",
"lint": "eslint 'src/**/*.*'",
"lint:fix": "prettier 'src/**/*.*' --write",
"diagram": "ts-node ./node_modules/.bin/typeorm-uml -f png -d src/ERD.png ormconfig.json"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"googleapis": "^109.0.0",
"lodash": "^4.17.21",
"pg": "^8.8.0",
"pm2": "^5.2.2",
"swagger-ui-express": "^4.5.0",
"tsoa": "^4.1.3",
"typeorm": "^0.3.10"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/gapi": "^0.0.43",
"@types/lodash": "^4.14.187",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"concurrently": "^7.5.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typeorm-uml": "^1.6.5",
"typescript": "^4.8.4"
}
}