forked from twurple/twurple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"workspaces": [
"packages/*"
],
"private": true,
"name": "twitch-workspace",
"repository": "github:d-fischer/twitch",
"author": "Daniel Fischer <daniel@d-fischer.dev>",
"license": "MIT",
"devDependencies": {
"@d-fischer/documen.ts": "^0.9.0",
"@d-fischer/eslint-config": "^1.0.11",
"@types/node": "^12.12.47",
"electron": "^9.0.3",
"eslint": "^6.6.0",
"eslint-import-resolver-lerna": "^1.1.0",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"tsukuru": "^0.4.3",
"typescript": "~3.7.4"
},
"scripts": {
"lint": "eslint --ext js,ts packages",
"prettier:check": "prettier --check 'packages/**'",
"prettier:fix": "prettier --write 'packages/**'",
"build": "lerna run build",
"rebuild": "lerna run rebuild",
"docs": "documen.ts",
"lerna": "lerna"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": [
"prettier --write",
"git add"
],
"*.{js,ts}": [
"eslint --fix",
"git add"
]
}
}