forked from checkupjs/checkup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "checkup",
"version": "0.0.1",
"main": "index.js",
"repository": "https://github.com/checkupjs/checkup.git",
"author": "Steve Calvert <steve.calvert@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn wsrun --stages build",
"build:watch": "yarn wsrun watch",
"clean": "yarn wsrun clean",
"test": "yarn wsrun test",
"lint": "eslint . --cache --ext .ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-jest": "^23.8.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-unicorn": "^16.1.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"wsrun": "^5.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.ts": [
"yarn lint"
]
}
}