forked from wangxinleo/wechat-public-account-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.82 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": "wechat-public-account-push",
"version": "1.0.0",
"description": "微信公众号推送-给女朋友的浪漫",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "cross-env APP_MODE=prod node main.js",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest",
"prepare": "husky install",
"lint": "eslint --fix .",
"params-log": "cross-env APP_MODE=params-log node main.js",
"server": "cross-env APP_MODE=server node main.js",
"pm2start": "pm2 start start_pm2.js --name @wechat-push",
"build-cloud": "npm i && vite build && echo '{\"type\": \"commonjs\"}' > cloud/package.json",
"dev-cloud": "cross-env APP_MODE=prod node cloud"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangxinleo/wechat-public-account-push.git"
},
"keywords": [
"node"
],
"author": "wangxinleo",
"license": "MIT",
"bugs": {
"url": "https://github.com/wangxinleo/wechat-public-account-push/issues"
},
"homepage": "https://github.com/wangxinleo/wechat-public-account-push#readme",
"dependencies": {
"axios": "^0.27.2",
"dayjs": "^1.11.5",
"jsdom": "^20.0.0",
"lodash": "^4.17.21",
"lunar-javascript": "^1.2.33",
"node-schedule": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@types/fs-extra": "^9.0.13",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"lint-staged": "^13.0.3",
"mockdate": "^3.0.5",
"vite": "^3.1.4"
},
"jest": {
"transform": {}
},
"lint-staged": {
"*.js": "eslint --fix"
}
}