-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.64 KB
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
{
"name": "root",
"author": "Justin Wallace <jpwallace22@gmail.com>",
"version": "1.0.0",
"description": "React Hooks for Web Workers & Web Worker utilities",
"packageManager": "yarn@4.0.2",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/config-conventional": "^18.4.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"commitlint": "^18.4.3",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.1",
"rimraf": "^5.0.5",
"typescript": "^5.4.3"
},
"scripts": {
"hooks": "yarn workspace use-react-workers",
"docs": "yarn workspace docs",
"preinstall": "npx only-allow yarn",
"dev": "concurrently \"yarn hooks dev\" \"yarn docs dev\"",
"build": "yarn hooks build && yarn docs build",
"test:typecheck": "tsc --noEmit",
"lint": "eslint \"{use-react-workers, docs}/**/*.{js,jsx,ts,tsx,mdx}\"",
"lint:fix": "eslint \"{use-react-workers, docs}/**/*.{js,jsx,ts,tsx,mdx}\" --fix",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"format": "yarn lint:fix && yarn prettier:fix",
"release:dry": "yarn hooks release:dry",
"prepare": "husky install"
},
"private": true,
"workspaces": [
"use-react-workers",
"docs"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,mdx,md}": [
"yarn format"
]
},
"license": "MIT"
}