forked from kwhsiung/mm-punch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "@kwhsiung/mm-punch",
"version": "2.3.1",
"description": "",
"scripts": {
"cron": "cross-env NODE_ENV=production node src/index.js",
"dev": "node src/index.js",
"test": "jest --watch",
"lint": "eslint --ext .js --ignore-path .gitignore --ignore-pattern !.eslintrc.js --max-warnings 0",
"lintall": "eslint --ext .js --ignore-path .gitignore --ignore-pattern !.eslintrc.js --max-warnings 0 .",
"lintfix": "eslint --ext .js --ignore-path .gitignore --ignore-pattern !.eslintrc.js . --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwhsiung/mm-punch.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kwhsiung/mm-punch/issues"
},
"homepage": "https://github.com/kwhsiung/mm-punch#readme",
"dependencies": {
"axios": "^0.21.0",
"cron": "^1.8.2",
"cross-env": "^7.0.2",
"dayjs": "^1.10.1",
"dotenv": "^8.2.0",
"firebase": "^6.2.4",
"lodash": "^4.17.20",
"puppeteer-core": "^5.4.1",
"taiwan-holiday": "^1.0.5",
"unirand": "^2.11.0"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.7.0",
"jest": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"lint-staged": "^8.2.1"
}
}