-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "moro",
"version": "1.0.0",
"description": "A command line tool for tracking work hours, as simple as it can get.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/albacoretuna/moro.git"
},
"scripts": {
"lint": "eslint ./ --quiet --ignore-path ./.eslintignore"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/albacoretuna/moro/issues"
},
"homepage": "https://github.com/albacoretuna/moro#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "4.3.6",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"typescript": "4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && eslint ./ --quiet --ignore-path ./.eslintignore"
}
}
}