-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.79 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "next-ts-template",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbo --show-all",
"build": "next build",
"start": "pnpm dlx serve@latest out",
"prettier:check": "prettier --check src",
"prettier:fix": "prettier --write src",
"eslint:check": "eslint",
"eslint:fix": "eslint --fix",
"eslint:report": "eslint -f @microsoft/eslint-formatter-sarif -o eslint.sarif",
"lint": "pnpm run --parallel /^.*:check$/",
"lint-fix": "pnpm run /^.*:fix$/",
"clean": "rimraf build",
"prelint": "pnpm install",
"prebuild": "pnpm lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"analyze": "cross-env ANALYZE=true pnpm build"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@mui/x-date-pickers": "^7.2.0",
"material-react-table": "^2.12.1",
"next": "^14.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-jsx": "^5.1.2",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@next/bundle-analyzer": "^14.2.1",
"@storybook/addon-essentials": "^8.0.8",
"@storybook/addon-interactions": "^8.0.8",
"@storybook/addon-links": "^8.0.8",
"@storybook/addon-onboarding": "^8.0.8",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-themes": "^8.0.8",
"@storybook/blocks": "^8.0.8",
"@storybook/nextjs": "^8.0.8",
"@storybook/react": "^8.0.8",
"@storybook/testing-library": "^0.2.2",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "^9.0.0",
"eslint-config-import": "^0.13.0",
"eslint-config-next": "^14.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"msw": "^2.2.14",
"msw-storybook-addon": "^2.0.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"rimraf": "^5.0.5",
"storybook": "^8.0.8",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0"
},
"engines": {
"npm": "use pnpm please!",
"yarn": "use pnpm please!",
"pnpm": ">=8.6.12"
},
"msw": {
"workerDirectory": ".storybook/public"
}
}