generated from LemonFace0309/mono-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "root",
"version": "0.0.0",
"engines": {
"node": "^14.x"
},
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "yarn codegen && turbo run build",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"lint": "turbo run lint",
"codegen": "turbo run codegen",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"esbuild": "^0.14.23",
"esbuild-jest": "^0.5.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"turbo": "^1.1.3"
},
"lint-staged": {
"apps/**/*.{js,ts,ts,tsx}": [
"eslint --fix"
],
"packages/**/.{js,ts,ts,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"packageManager": "yarn@1.22.1"
}