-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
55 lines (55 loc) · 1.31 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
{
"name": "turborepo-basic-yarn",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"dependencies": {
"app": "workspace:*",
"config": "workspace:*",
"lib": "workspace:*",
"tsconfig": "workspace:*",
"ui": "workspace:*"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"esbuild": "^0.17.18",
"esbuild-jest": "^0.5.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"msw": "^1.2.1",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"turbo": "^1.10.16",
"typescript": "5.2.2"
},
"resolutions": {
"typescript": "5.2.2",
"eslint": "8.5.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.14"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/ui/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
}
}