generated from radyalabs/next-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.5 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "next-ts-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm icons:create && next build",
"start": "next start",
"lint": "next lint",
"lint-staged": "lint-staged",
"lint:icons": "next lint --fix --dir components/icons",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install .husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"icons:clean": "rimraf components/icons",
"icons:build": "svgr --typescript -d ./components/icons ./assets/icons --config-file ./svgr-config.json --template ./svg-template.js && pnpm lint:icons",
"icons:create": "pnpm icons:clean && pnpm icons:build"
},
"dependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.3",
"@microsoft/signalr": "^8.0.0",
"@mui/icons-material": "^5.15.12",
"@mui/material": "^5.15.2",
"@mui/material-nextjs": "^5.15.0",
"@mui/x-date-pickers": "^6.18.6",
"@tanstack/react-query": "^5.24.8",
"@tanstack/react-query-devtools": "^5.24.8",
"@testing-library/dom": "^9.3.3",
"@types/google-one-tap": "^1.2.6",
"@types/jest": "^29.5.11",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"axios": "^1.6.3",
"classnames": "^2.5.0",
"cookies-next": "^2.1.2",
"date-fns": "^2.30.0",
"eslint": "8.33.0",
"eslint-config-next": "14.2.3",
"eslint-plugin-simple-import-sort": "^8.0.0",
"next": "14.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.2",
"react-svg": "^16.1.32",
"sass": "^1.69.5",
"sharp": "^0.33.2",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@storybook/addon-actions": "^8.0.9",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.9",
"@storybook/addon-styling-webpack": "0.0.5",
"@storybook/addon-themes": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/nextjs": "^8.0.9",
"@storybook/react": "^8.0.9",
"@svgr/cli": "^8.1.0",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.16",
"css-loader": "^6.8.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.4",
"rimraf": "^5.0.5",
"storybook": "7.5.3",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.1.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^5.3.3"
}
}