-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.6 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
{
"name": "next-template",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "npm run lint:next && npm run lint:eslint && npm run lint:stylelint && npm run lint:prettier",
"lint:next": "next lint",
"lint:eslint": "eslint ./src --ext .js,jsx,.ts,.tsx",
"lint:stylelint": "stylelint ./src/**/*.{css,scss}",
"lint:prettier": "prettier --check './src/**/*.{js,jsx,ts,tsx,css,scss,md}'",
"fix:eslint": "eslint ./src --ext .js,jsx,.ts,.tsx --fix",
"fix:stylelint": "stylelint ./src/**/*.{css,scss} --fix",
"fix:prettier": "prettier --check --write './src/**/*.{js,jsx,ts,tsx,css,scss,md}'",
"format": "npm run fix:eslint & npm run fix:stylelint & npm run fix:prettier",
"test": "vitest",
"sb": "storybook dev -p 6006",
"sb:build": "storybook build"
},
"dependencies": {
"@hookform/resolvers": "^3",
"clsx": "^2",
"framer-motion": "^11",
"next": "^14",
"next-themes": "^0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7",
"swr": "^2",
"tailwind-merge": "^2",
"tailwind-variants": "^0",
"zod": "^3"
},
"devDependencies": {
"@chromatic-com/storybook": "^1",
"@storybook/addon-essentials": "^8",
"@storybook/addon-interactions": "^8",
"@storybook/addon-links": "^8",
"@storybook/addon-onboarding": "^8",
"@storybook/blocks": "^8",
"@storybook/nextjs": "^8",
"@storybook/react": "^8",
"@storybook/test": "^8",
"@testing-library/jest-dom": "^6",
"@testing-library/react": "^16",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vitejs/plugin-react": "^4",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "^14",
"eslint-config-prettier": "^9",
"eslint-plugin-import": "^2",
"eslint-plugin-jest-dom": "^5",
"eslint-plugin-simple-import-sort": "^12",
"eslint-plugin-storybook": "^0",
"eslint-plugin-testing-library": "^6",
"eslint-plugin-unused-imports": "^3",
"jsdom": "^25",
"lefthook": "^1",
"postcss": "^8",
"prettier": "^3",
"prettier-plugin-tailwindcss": "^0",
"sass": "^1",
"sass-loader": "^16",
"storybook": "^8",
"stylelint": "^16",
"stylelint-config-recess-order": "^5",
"stylelint-config-standard": "^36",
"stylelint-config-standard-scss": "^13",
"stylelint-scss": "^6",
"tailwindcss": "^3",
"typescript": "^5",
"vite-tsconfig-paths": "^5",
"vitest": "^2"
}
}