This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 4.28 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "express-ts",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"scripts": {
"prepare": "husky install",
"start": "nodemon",
"start:dist": "node dist/main.js",
"start:prod": "cross-env NODE_ENV=production node dist/main.js",
"start:dev": "cross-env NODE_ENV=development nodemon",
"clean": "rimraf dist/*",
"clean:all": "rimraf node_modules dist/*",
"build": "swc src -d dist --source-maps --copy-files",
"build:tsc": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"lint": "eslint --ext ts,json,js src",
"lint:fix": "eslint --ext ts,json,js src --fix",
"format": "prettier --write src/**/*.{ts,js,json}",
"ts:check": "tsc --noEmit -p tsconfig.json",
"db:migrate": "sequelize-cli db:migrate",
"db:migrate:undo": "sequelize-cli db:migrate:undo",
"db:migrate:undo:all": "sequelize-cli db:migrate:undo:all",
"db:migrate:status": "sequelize-cli db:migrate:status",
"db:migration:generate": "sequelize-cli migration:generate --name",
"db:seed:generate": "sequelize-cli seed:generate --name",
"db:seed": "sequelize-cli db:seed --seed",
"db:seed:all": "sequelize-cli db:seed:all",
"test": "jest --no-cache --passWithNoTests --config ./src/test/jest.config.ts --silent",
"test:debug": "jest --no-cache --passWithNoTests --runInBand --config ./src/test/jest.config.ts --detectOpenHandles --watch --verbose",
"test:e2e": "cross-env NODE_ENV=test jest --no-cache --runInBand --passWithNoTests --config ./src/test/e2e/jest.config.ts --silent",
"test:watch": "jest --no-cache --passWithNoTests --watch --config ./src/test/jest.config.ts --verbose",
"test:e2e:watch": "cross-env NODE_ENV=test jest --no-cache --runInBand --passWithNoTests --config ./src/test/e2e/jest.config.ts --watch --verbose",
"lint-staged": "lint-staged"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@faker-js/faker": "^7.6.0",
"@jest/globals": "^29.5.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.39",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.191",
"@types/mime-types": "^2.1.1",
"@types/multer": "^1.4.7",
"@types/mustache": "^4.2.2",
"@types/node": "^18.15.0",
"@types/nodemailer": "^6.4.7",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-extended": "^3.2.4",
"lint-staged": "^13.2.1",
"nock": "^13.3.0",
"nodemon": "^3.0.1",
"prettier": "^2.8.4",
"rimraf": "^5.0.0",
"sequelize-cli": "^6.6.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.3",
"tsx": "^3.12.3",
"type-fest": "^3.6.1",
"typescript": "^5.0.2"
},
"dependencies": {
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"cli-highlight": "^2.1.11",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.7.0",
"express-winston": "^4.2.0",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"mustache": "^4.2.0",
"mysql2": "^3.2.0",
"nanoid": "^3.3.4",
"node-cache": "^5.1.2",
"nodemailer": "^6.9.1",
"sequelize": "^6.29.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^4.6.2",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"yup": "^1.0.2"
}
}