This repository has been archived by the owner on Feb 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.03 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
{
"name": "boilerplate-express",
"version": "0.0.0",
"private": true,
"description": "A boilerplate for express.",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"dev": "pnpm run dev:nodemon",
"dev:nodemon": "nodemon ./src/index.ts",
"dev:nodemon:https": "cross-env HTTPS=true nodemon ./src/index.ts",
"lint": "pnpm run lint:eslint && pnpm run lint:markdownlint",
"lint:eslint": "eslint . --fix --ext=.js,.cjs,.mjs,.jsx,.ts,.cts,.mts,.tsx,.vue,.svelte --ignore-path=.gitignore",
"lint:markdownlint": "markdownlint . --fix --ignore-path=.gitignore",
"prepare": "is-ci || husky install",
"prod": "cross-env NODE_ENV=production nodemon ./src/index.ts",
"prod:https": "cross-env NODE_ENV=production HTTPS=true nodemon ./src/index.ts",
"test": "cross-env NODE_ENV=test jest"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"dependencies": {
"@modyqyw/utils": "~2.1.2",
"agenda": "~4.2.1",
"axios": "~0.25.0",
"axios-retry": "~3.2.4",
"body-parser": "~1.19.1",
"cls-rtracer": "~2.6.0",
"compression": "~1.7.4",
"content-disposition": "~0.5.4",
"cors": "~2.8.5",
"dayjs": "~1.10.7",
"dotenv": "~16.0.0",
"dotenv-expand": "~8.0.1",
"express": "~4.17.2",
"express-rate-limit": "~6.2.0",
"express-validator": "~6.14.0",
"express-winston": "~4.2.0",
"formidable": "~2.0.1",
"helmet": "~5.0.2",
"highlight.js": "~11.4.0",
"jsonwebtoken": "~8.5.1",
"marked": "~4.0.12",
"mime-types": "~2.1.34",
"mongoose": "~6.2.1",
"picocolors": "~1.0.0",
"query-string": "~7.1.1",
"serve-static": "~1.14.2",
"shelljs": "~0.8.5",
"spdy": "~4.0.2",
"statuses": "~2.0.1",
"winston": "~3.5.1",
"winston-daily-rotate-file": "~4.6.0"
},
"devDependencies": {
"@babel/core": "~7.17.2",
"@babel/eslint-parser": "~7.17.0",
"@commitlint/cli": "~16.1.0",
"@modyqyw/fabric": "~4.12.0",
"@types/body-parser": "~1.19.2",
"@types/compression": "~1.7.2",
"@types/content-disposition": "~0.5.4",
"@types/cors": "~2.8.12",
"@types/express": "~4.17.13",
"@types/formidable": "~2.0.4",
"@types/jest": "~27.4.0",
"@types/jsonwebtoken": "~8.5.8",
"@types/marked": "^4.0.2",
"@types/node-cron": "~3.0.1",
"@types/serve-static": "~1.13.10",
"@types/shelljs": "~0.8.11",
"@types/spdy": "~3.4.5",
"@types/statuses": "~2.0.0",
"@types/supertest": "~2.0.11",
"@typescript-eslint/eslint-plugin": "~5.11.0",
"@typescript-eslint/parser": "~5.11.0",
"commitizen": "~4.2.4",
"cross-env": "~7.0.3",
"eslint": "~8.8.0",
"esno": "~0.14.1",
"husky": "~7.0.4",
"is-ci": "~3.0.1",
"jest": "~27.5.1",
"jest-esbuild": "~0.2.6",
"lint-staged": "~12.3.3",
"markdownlint-cli": "~0.31.1",
"nodemon": "~2.0.15",
"pm2": "~5.1.2",
"prettier": "~2.5.1",
"release-it": "~14.12.4",
"supertest": "~6.2.2",
"ts-jest": "~27.1.3",
"type-fest": "~2.11.2",
"typescript": "~4.5.5"
}
}