-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 965 Bytes
/
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
{
"name": "my-react-snippet",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"examples/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean",
"test": "turbo run test",
"prepare": "husky install"
},
"devDependencies": {
"eslint-config-custom": "*",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "latest",
"turbo": "1.6.1"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {},
"packageManager": "[email protected]",
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/{ui,my-custom-hooks}/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"examples/**/*{js,ts,jsx,tsx}": [
"eslint --fix"
]
},
"msw": {
"workerDirectory": "public"
}
}