-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
57
58
{
"name": "@boilertowns-example/react-monorepo-boilerplate",
"repository": {
"type": "git",
"url": "https://github.com/boilertowns/react-monorepo-boilerplate.git"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --filter=./packages/*",
"build:all": "turbo run build",
"changeset": "changeset",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"prepare": "husky install",
"release": "changeset publish"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{md,mdx,yml,json}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.12",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.9.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"turbo": "^1.6.3",
"typescript": "^4.9.4"
},
"packageManager": "[email protected]",
"engines": {
"node": "^14.17.0 || >=16.0.0"
}
}