forked from maxam2017/productive-box
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1005 Bytes
/
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
{
"name": "productive-box",
"version": "1.1.0",
"description": "Are you an early 🐤 or a night 🦉? Let's check out in gist",
"author": "maxam2017",
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc src/index.ts --outDir dist && ncc build dist/index.js --minify && find dist/ -type f -not -name 'index.js' -delete",
"lint": "eslint src/ --ext .ts"
},
"dependencies": {
"@octokit/rest": "^17.2.1",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^13.11.1",
"@types/node-fetch": "^2.5.6",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"@zeit/ncc": "^0.22.1",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"yarn lint --fix"
]
}
}