-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
73 lines (73 loc) · 2.32 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
{
"name": "wxbot",
"version": "2.0.1",
"description": "微信机器人",
"author": "skyvow",
"repository": {
"type": "git",
"url": "https://github.com/wux-weapp/wxbot"
},
"scripts": {
"apidoc": "./node_modules/.bin/apidoc -i server/controller/ -o static/apidoc",
"local": "cross-env NODE_ENV=test node local/index.js",
"dev:site": "cross-env NODE_ENV=development ONLY_SITE=true ts-node server/index.ts --watch server",
"dev": "cross-env NODE_ENV=development ts-node server/index.ts --watch server",
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts,.js,.vue --ignore-path .gitignore . --fix",
"build": "nuxt-ts build",
"start": "cross-env NODE_ENV=production ts-node server/index.ts",
"generate": "nuxt-ts generate"
},
"dependencies": {
"@nuxt/typescript-build": "^2.0.3",
"@nuxt/typescript-runtime": "^2.0.0",
"@nuxtjs/auth": "4.9.1",
"@nuxtjs/axios": "5.9.7",
"ant-design-vue": "1.6.5",
"canvas": "^2.6.1",
"file-box": "^0.16.4",
"jsonwebtoken": "^8.5.1",
"koa": "^2.6.2",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^3.6.0",
"koa-router": "^8.0.8",
"log4js": "^6.2.1",
"moment": "^2.24.0",
"mongoose": "^5.9.10",
"node-schedule": "^1.3.2",
"node-uuid": "^1.4.8",
"nuxt": "^2.10.2",
"qrcodejs2": "^0.0.2",
"urllib": "^2.34.2",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.0.2",
"wechaty": "^0.56.6",
"wechaty-puppet": "^0.34.1",
"wechaty-puppet-service": "^0.14.5"
},
"devDependencies": {
"@nuxt/types": "^2.14.7",
"@nuxtjs/eslint-config": "^5.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
"@types/mongoose": "^5.10.1",
"@types/node": "^12.19.3",
"@types/node-schedule": "^1.3.1",
"@types/node-uuid": "^0.0.28",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"apidoc": "^0.25.0",
"cross-env": "^5.2.1",
"eslint": "^7.13.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-apidoc": "^0.0.7",
"eslint-plugin-nuxt": "^2.0.0",
"node-sass": "^4.9.4",
"nodemon": "^2.0.6",
"sass-loader": "^7.1.0",
"ts-loader": "^8.0.11",
"ts-node": "^9.0.0"
}
}