forked from kaiyuanshe/osschat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.65 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
{
"name": "osschat",
"version": "0.10.57",
"description": "Apache OSSChat",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"heroku:env": "heroku config -s -a oss-chat | sed 's/\\\\\\\\/\\\\/g' | tee .env",
"heroku:local": "heroku local",
"changelog": "github_changelog_generator -u kaiyuanshe -p osschat && sed -i'.bak' /greenkeeper/d CHANGELOG.md && sed -i'.bak' '/An in-range update of/d' CHANGELOG.md && ts-node scripts/sort-contributiveness.ts < CHANGELOG.md > CHANGELOG.new.md 2>/dev/null && cat CHANGELOG.md >> CHANGELOG.new.md && mv CHANGELOG.new.md CHANGELOG.md",
"clean": "shx rm -fr dist/*",
"dist": "npm run build",
"build": "tsc && chmod +r ./node_modules/node-jq/bin/jq || true",
"lint": "npm-run-all lint:es lint:ts",
"lint:ts": "tsc --isolatedModules --noEmit",
"start": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node bin/main.ts",
"test": "npm-run-all lint test:unit",
"test:unit": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" tap \"src/**/*.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/kaiyuanshe/OSSChat.git"
},
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kaiyuanshe/OSSChat/issues"
},
"homepage": "https://github.com/kaiyuanshe/OSSChat#readme",
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"dotenv": "^10.0.0",
"ducks": "^0.11.10",
"express": "^4.17.1",
"finis": "^0.4.5",
"gerror": "^1.0.2",
"ha-wechaty": "^0.9.12",
"micromatch": "^4.0.4",
"moment": "^2.29.1",
"probot": "^12",
"qrcode-terminal": "^0.12.0",
"read-pkg-up": "^9",
"redux": "^4.1.2",
"redux-observable": "^2.0.0",
"remote-redux-devtools": "^0.5.16",
"request": "^2.88.2",
"rx-queue": "^0.12.6",
"smee-client": "^1.2.2",
"wechaty": "^0.68.1",
"wechaty-chatopera": "^1.0.2",
"wechaty-ducks-contrib": "^0.3.6",
"wechaty-plugin-contrib": "^0.14.23",
"wechaty-puppet": "^0.41.9",
"wechaty-puppet-padlocal": "^0.4.2",
"wechaty-redux": "^0.5.7"
},
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/tsconfig": "^1.0.3",
"@types/express": "^4.17.13",
"@types/micromatch": "^4.0.2",
"@types/raven": "^2.5.4",
"@types/request": "^2.48.7"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}