-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "fish-touching-bot",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "nodemon --ext js,ts --exec \"./node_modules/.bin/ts-node src/index.ts\"",
"dev:lint": "nodemon --ext js,ts --exec \"npm run eslint && npx ts-node src/index.ts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint src --ext .ts"
},
"keywords": [],
"author": "Devo Zou",
"license": "ISC",
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@tsconfig/node16": "^1.0.2",
"@types/qrcode-terminal": "^0.12.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-alloy": "^4.4.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/node-schedule": "^1.3.2",
"axios": "^0.24.0",
"dayjs": "^1.10.7",
"node-schedule": "^2.1.0",
"qrcode-terminal": "^0.12.0",
"wechaty": "^1.19.11",
"wechaty-puppet-wechat": "^1.18.4"
}
}