-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
74 lines (74 loc) · 2.1 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
{
"name": "nest-wechat",
"version": "0.2.50",
"description": "nestjs module for wechat server-side api.",
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"{lib,test}/**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"test": "jest",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"serve:docs": "docsify serve docs",
"cpdocs": "cp README.md CHANGELOG.md ./docs/",
"postversion": "git push --follow-tags",
"release:dry": "release-it patch --dry-run",
"release": "release-it patch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baaxl9vh/nest-wechat.git"
},
"keywords": [
"nest",
"nestjs",
"wechat"
],
"author": "jay",
"license": "MIT",
"bugs": {
"url": "https://github.com/baaxl9vh/nest-wechat/issues"
},
"homepage": "https://baaxl9vh.github.io/nest-wechat",
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@nestjs/common": "^8.2.4",
"@nestjs/config": "^1.1.6",
"@nestjs/core": "^8.2.4",
"@nestjs/platform-express": "^8.2.4",
"@nestjs/testing": "^8.2.4",
"@release-it/conventional-changelog": "^3.3.0",
"@types/cache-manager-redis-store": "^2.0.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/node-forge": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"cache-manager": "^3.6.0",
"cache-manager-redis-store": "^2.0.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.9",
"docsify-cli": "^4.4.3",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"husky": "^7.0.0",
"jest": "^29.4.3",
"prettier": "^2.5.1",
"reflect-metadata": "^0.1.13",
"release-it": "^14.11.8",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0",
"ts-jest": "^29.0.5",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^1.3.4",
"fast-xml-parser": "^4.0.7",
"node-forge": "^1.3.1",
"raw-body": "^2.5.1"
},
"engines": {
"node": ">=10.0.0"
}
}