-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.01 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
{
"name": "nextjs-structure",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20.x"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"scripts": {
"dev": "cross-env FORCE_COLOR=1 next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"analyze": "cross-env ANALYZE=true yarn build",
"type-check": "tsc --noEmit",
"storybook": "cross-env FORCE_COLOR=1 storybook dev -p 6006",
"test-storybook": "cross-env FORCE_COLOR=1 test-storybook",
"build-storybook": "cross-env FORCE_COLOR=1 storybook build",
"postinstall": "patch-package -y",
"preinstall": "npx only-allow yarn",
"coupling-graph": "npx madge --extensions js,jsx,ts,tsx,css,scss,md,mdx,d.ts ./ --exclude '.next|tailwind.config.js|postcss.config.js|next.config.js|next-env.d.ts|README.md|.storybook/|.eslintrc' --image graph.svg"
},
"dependencies": {
"@next/bundle-analyzer": "^14.2.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/release-notes-generator": "^14.0.1",
"@t3-oss/env-nextjs": "^0.11.1",
"@types/node": "22.5.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"autoprefixer": "10.4.20",
"eslint": "^9.9.1",
"eslint-config-next": "14.2.7",
"jackspeak": "4.0.1",
"next": "14.2.7",
"next-compose-plugins": "^2.2.1",
"postcss": "8.4.41",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.10",
"typescript": "5.5.4",
"zod": "^3.21.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.7",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/nextjs": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/testing-library": "^0.2.2",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/react": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vitejs/plugin-react": "^4.0.0",
"cross-env": "^7.0.3",
"cypress": "^13.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-compat": "^6.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"git-conventional-commits": "^2.6.5",
"jsdom": "^25.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.3.3",
"sass": "^1.62.1",
"semantic-release": "^24.1.0",
"storybook": "^8.2.9",
"vitest": "^2.0.5"
}
}