-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
98 lines (98 loc) · 3.19 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
{
"name": "friday.bot",
"version": "1.14.17",
"description": "Friday Bot is designed for serving the Wechaty community purpose.",
"type": "module",
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"build": "tsc",
"clean": "shx rm -fr dist/*",
"dist": "npm-run-all clean build",
"dist:copy": "cp src/ml/clue-vocab.txt dist/src/ml",
"heroku-postbuild:skip": "wechaty-puppet-install",
"lint": "npm-run-all lint:es lint:ts",
"lint:ts": "tsc --isolatedModules --noEmit",
"postinstall": "chmod +r node_modules/node-jq/bin/jq",
"ts": "cross-env NODE_OPTIONS='--no-warnings --loader=ts-node/esm' node src/main.ts",
"start:legacy": "node dist/src/main.js",
"start": "nest start --watch",
"test": "npm-run-all lint test:unit",
"test:unit": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" tap \"src/**/*.spec.ts\" \"src/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\"",
"lint:es": "eslint --ignore-pattern node_modules/ --ignore-pattern fixtures/ \"{bin,examples,src,scripts,tests}/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/friday.git"
},
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/friday/issues"
},
"homepage": "https://github.com/wechaty/friday#readme",
"dependencies": {
"@nestjs/common": "^9.2.1",
"@nestjs/core": "^9.2.1",
"@nestjs/cqrs": "^9.0.1",
"@nestjs/mapped-types": "*",
"@nestjs/platform-express": "^9.2.1",
"@nestjs/schedule": "^2.1.0",
"axios": "^1.2.3",
"cli-color": "^2.0.3",
"cross-fetch": "^3.1.5",
"dotenv": "^16.0.3",
"env-var": "^7.3.0",
"express": "^4.18.2",
"finis": "^0.4.5",
"moment": "^2.29.4",
"node-cron": "^3.0.2",
"read-pkg-up": "^9.1.0",
"rxjs": "^7.8.0",
"sheet-db": "^1.0.1",
"time-constants": "^1.0.3",
"vorpal-hacker-news": "^1.0.6",
"wechaty": "^1.20.2",
"wechaty-bot5-assistant": "^0.2.14",
"wechaty-freshdesk": "^1.0.2",
"wechaty-intercom": "^1.0.1",
"wechaty-plugin-contrib": "^1.12.1",
"wechaty-puppet-gitter": "^1.21.3",
"wechaty-puppet-official-account": "^1.10.3",
"wechaty-puppet-oicq": "^1.10.2",
"wechaty-puppet-padlocal": "^1.20.1",
"wechaty-puppet-service": "^1.18.2",
"wechaty-puppet-whatsapp": "^1.19.4",
"wechaty-qnamaker": "^1.11.1",
"wechaty-vorpal": "^1.13.1",
"wechaty-vorpal-contrib": "^1.12.1",
"wechaty-voteout": "^1.11.1"
},
"devDependencies": {
"@chatie/eslint-config": "^1.4.1",
"@chatie/git-scripts": "^0.6.2",
"@chatie/tsconfig": "^4.9.1",
"@nestjs/cli": "^9.1.8",
"@nestjs/schematics": "^9.0.4",
"@nestjs/testing": "^9.2.1",
"@types/cli-color": "^2.0.2",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.15",
"@types/node-cron": "^3.0.7",
"@types/raven": "^2.5.4",
"@types/read-pkg-up": "^6.0.0",
"@types/supertest": "^2.0.12",
"@types/time-constants": "^1.0.0",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"tstest": "^1.2.8",
"wechaty-puppet-mock": "^1.18.2"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}