-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 4.23 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
121
122
123
{
"name": "twitch",
"version": "2.1.0",
"description": "",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "npm run ts-prepare && cross-env NODE_ENV=development nodemon src/index.ts",
"predev": "npm run build",
"typecheck": "tsc --noEmit",
"ts-prepare": "ts-patch install -s",
"build": "tsc && tsc-alias",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:check": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\"",
"format:fix": "prettier --write --ignore-path .gitignore .",
"commit": "npm run format:fix & npm run lint & git add -A && git-cz -am",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"commitlint": "commitlint --edit",
"commitmsg": "commitlint -E HUSKY_GIT_PARAMS"
},
"keywords": [
"twitch"
],
"author": "Mahdi Ettehadnejad",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/app-root-path": "^1.2.5",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.3",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.1",
"@types/fs-extra": "^11.0.1",
"@types/i18n": "^0.13.7",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.9",
"@types/node": "^20.4.5",
"@types/node-cron": "^3.0.8",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"standard-version": "^9.5.0",
"swagger-autogen": "^2.23.7",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.2",
"typescript-transform-paths": "^3.4.7"
},
"dependencies": {
"@types/cors": "^2.8.13",
"@types/jsonwebtoken": "^9.0.2",
"@types/uuidv4": "^5.0.0",
"app-root-path": "^3.1.0",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-fileupload": "^1.4.0",
"express-joi-validation": "^5.0.1",
"express-rate-limit": "^7.0.1",
"helmet": "^7.0.0",
"http-errors": "^2.0.0",
"i18n": "^0.15.1",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.9",
"node-cron": "^3.0.2",
"socket.io": "^4.7.5",
"supertest": "^6.3.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuidv4": "^6.2.13",
"yup": "^1.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "npm run commitmsg"
}
}
}