-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
44
45
46
47
48
49
{
"name": "expressjs-rest-boilerplate",
"description": "",
"version": "0.0.1",
"main": "dist/index.ts",
"scripts": {
"start": "nodemon dist",
"build": "yarn swagger && tsc --project tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"dev": "nodemon .",
"watch": "yarn swagger && tsc -w",
"swagger": "tsoa spec"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^6.2.1",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.12",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"sequelize": "6.6.2",
"sequelize-typescript": "^2.1.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"tsoa": "^3.10.0",
"typescript": "^4.4.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.9.0",
"@types/swagger-jsdoc": "^6.0.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-vue": "^7.17.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/sequelize": "^4.28.10",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.6.3"
}
}