-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
72 lines (72 loc) · 2.23 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "frontend-monorepo-boilerplate",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "husky",
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"lint-staged-husky": "lint-staged",
"tsc": "turbo tsc",
"test": "turbo test",
"storybook": "turbo storybook",
"storybook-build": "turbo storybook-build",
"format-lint": "prettier --config .prettierrc --check --ignore-unknown .",
"format-fix": "prettier --config .prettierrc --write --ignore-unknown -l .",
"clean": "npm exec --workspaces -c 'rm -rf node_modules .next .turbo coverage dist compiled build build-storybook' && rm -rf node_modules",
"remove-turbo-cache": "rm -rf ./node_modules/.cache/turbo",
"update-dependencies": "turbo update-dependencies && npx npm-check-updates -u"
},
"dependencies": {
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.0",
"@hookform/resolvers": "3.3.4",
"@mui/icons-material": "5.15.14",
"@mui/material": "5.15.14",
"@tanstack/react-query": "5.28.8",
"@tanstack/react-query-devtools": "5.28.8",
"date-fns": "3.6.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"zod": "3.22.4"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@storybook/addon-webpack5-compiler-swc": "1.0.2",
"@storybook/manager-api": "8.0.4",
"@storybook/nextjs": "8.0.4",
"@storybook/react": "8.0.4",
"@storybook/theming": "8.0.4",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.2.2",
"@testing-library/user-event": "14.5.2",
"@types/node": "20.11.30",
"@types/react": "18.2.70",
"@types/react-dom": "18.2.22",
"autoprefixer": "10.4.19",
"commitizen": "4.3.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.12",
"storybook": "8.0.4",
"tailwindcss": "3.4.1",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"tsup": "8.0.2",
"turbo": "1.13.0",
"typescript": "5.4.3"
},
"engines": {
"node": ">=20.11.1",
"npm": ">=10.2.4"
}
}