forked from twurple/twurple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.39 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
{
"workspaces": [
"packages/*"
],
"private": true,
"name": "twurple-workspace",
"repository": "github:twurple/twurple",
"author": "Daniel Fischer <daniel@d-fischer.dev>",
"license": "MIT",
"devDependencies": {
"@d-fischer/documen.ts": "^0.16.8",
"@d-fischer/eslint-config": "^6.2.2",
"@types/jest": "^27.4.1",
"@types/node": "^14.18.50",
"@types/twitch-ext": "^1.24.4",
"cross-env": "^7.0.3",
"crowd": "^0.1.7",
"eslint": "8.50.0",
"husky": "^4.3.6",
"jest": "^29.5.0",
"jest-environment-node": "^29.5.0",
"lint-staged": "^11.2.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.0",
"tmi.js": "^1.8.5",
"ts-jest": "^29.1.0",
"tsukuru": "^0.8.0",
"typescript": "~5.0"
},
"resolutions": {
"@types/react": "^17"
},
"scripts": {
"lint": "eslint --ext js,ts packages",
"prettier:check": "prettier --check \"packages/**\"",
"prettier:fix": "prettier --write \"packages/**\"",
"build": "tsukuru",
"rebuild": "tsukuru --clean",
"docs": "documen.ts",
"test": "jest",
"preversion": "yarn build && yarn lint && yarn prettier:check",
"prepublishOnly": "yarn rebuild"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": "prettier --write",
"*.{js,ts}": "eslint --fix"
},
"dependencies": {
"@types/react": "^17"
}
}