-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 KB
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
{
"name": "wechat-bot",
"type": "module",
"version": "0.0.1",
"description": "微信机器人",
"author": {
"name": "iamc",
"email": "twboss8@126.com"
},
"license": "ISC",
"keywords": [],
"main": "./src/app.js",
"imports": {
"#src/*": "./src/*"
},
"scripts": {
"prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then husky install; fi",
"start": "fastify start -p 4300 -l info ./src/app.js",
"dev": "fastify start -p 4301 -w -l info -P ./src/app.js",
"lint": "eslint \"src/**/*.js\" --fix",
"commit": "./node_modules/cz-customizable/standalone.js"
},
"dependencies": {
"@fastify/autoload": "^5.10.0",
"@fastify/sensible": "^5.6.0",
"axios": "^1.7.7",
"dayjs": "^1.11.13",
"fastify": "^4.28.1",
"fastify-cli": "^6.3.0",
"fastify-plugin": "^5.0.0",
"node-schedule": "^2.1.1",
"node-ssh": "13.2.0",
"pg": "^8.12.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.1.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"cz-customizable": "^6.3.0",
"eslint": "^9.9.1",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"tap": "^15.0.9"
},
"config": {
"cz-customizable": {
"config": ".cz-config.json"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
]
}
}