-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "@chatie/server",
"version": "0.13.1",
"engines": {
"node": "16"
},
"description": "Web Service for Chatie",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "blue-tape -r ts-node/register tests/**/*.spec.ts",
"start": "ts-node bin/server.ts",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md",
"lint:md": "markdownlint README.md",
"lint:es": "eslint --ignore-pattern node_modules/ --ignore-pattern fixtures/ \"{bin,examples,src,scripts,tests}/**/*.ts\"",
"lint:ts": "tsc --noEmit"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/chatie/server.git"
},
"keywords": [
"chatie",
"chatie.io",
"wechaty",
"wechat",
"bot manager",
"cloud",
"management"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/chatie/server/issues"
},
"homepage": "https://github.com/chatie/server#readme",
"dependencies": {
"@chatie/io": "^0.11.2",
"brolog": "^1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"pkg-dir": "^5.0.0",
"ws": "^8.0.0"
},
"devDependencies": {
"@chatie/eslint-config": "^0.12.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/tsconfig": "^0.16.2",
"@types/express": "^4.17.13",
"@types/express-serve-static-core": "^4.17.24",
"@types/mime": "^2.0.3",
"@types/serve-static": "^1.13.10",
"@types/ws": "^7.4.7",
"tstest": "^0.4.10"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}