-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "express-typescript-sequelize-docker-boilerplate",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node-dev --poll --files --respawn src/index.ts",
"build": "rimraf dist && cross-env NODE_ENV=production tsc",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"lint": "eslint --max-warnings=0 --cache --cache-location ./.eslintcache ./src --ext .js,.ts -c ./.eslintrc.js",
"lint:fix": "eslint --max-warnings=0 --cache --cache-location ./.eslintcache --fix ./src --ext .js,.ts -c ./.eslintrc.js",
"format": "eslint src/**/*.ts --fix",
"pretty": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install",
"test:dev": "jest --runInBand --watchAll --no-cache",
"test": "jest --runInBand --no-cache",
"typeorm": "typeorm-ts-node-commonjs -d ./src/DataSource.ts",
"migration:generate": "npm run typeorm migration:generate",
"migration:show": "npm run typeorm migration:show",
"migration:run": "npm run typeorm migration:run",
"migration:revert": "npm run typeorm migration:revert",
"migration:create": "typeorm-ts-node-commonjs migration:create",
"pre-commit": "lint-staged"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.2.2",
"@types/jsonfile": "^6.1.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.21",
"@types/sequelize": "^4.28.13",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-plugin-jest": "^27.1.4",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.2.2",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"googleapis": "^100.0.0",
"http-status-codes": "^2.2.0",
"ioredis": "^5.2.3",
"jsonfile": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.19.0",
"sequelize-typescript": "^2.1.3",
"swagger-ui-express": "^4.4.0",
"ts-node": "^10.9.1",
"typedi": "^0.10.0",
"typeorm": "^0.3.10",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint:fix"
]
}
}