-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
124 lines (124 loc) · 4.05 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "nextjs-boilerplate",
"version": "1.1.0",
"scripts": {
"dev": "next",
"build": "next build",
"analyze": "ANALYZE=true pnpm build",
"start": "next start",
"test": "jest",
"test:ci": "jest --env=jsdom --coverage --watchAll=false --maxWorkers=2",
"format": "prettier -c --write \"*/**\"",
"lint": "eslint . --ext .ts,.tsx,.js && stylelint '**/*.css'",
"lint:fix": "eslint . --ext .ts,.tsx,.js --fix && stylelint '**/*.css' --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cypress:open": "cypress open",
"release": "standard-version -a",
"preinstall": "npx only-allow pnpm",
"fetch-definitions": "swagger-typescript-api --no-client -p ./src/libs/swagger.json -o ./types -n schema.ts",
"prepare": "husky",
"clean:install": "rimraf node_modules pnpm-lock.yaml && pnpm install"
},
"dependencies": {
"@babel/eslint-parser": "^7.22.10",
"@dwarvesf/react-hooks": "^0.8.2",
"@dwarvesf/react-utils": "^0.4.2",
"@hookform/resolvers": "^3.9.0",
"@next/bundle-analyzer": "^14.2.5",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@reach/auto-id": "^0.18.0",
"@tailwindcss/forms": "^0.5.7",
"classnames": "^2.5.1",
"isomorphic-unfetch": "^4.0.2",
"next": "14.2.5",
"nprogress": "^0.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.52.2",
"react-hot-toast": "^2.4.1",
"swr": "^2.2.5",
"tailwind-variants": "^0.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@dwarvesf/react-eslint-config": "^1.0.1",
"@prettier/plugin-xml": "^3.4.1",
"@storybook/addon-actions": "^8.2.8",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-links": "^8.2.8",
"@storybook/addon-storysource": "8.2.8",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-themes": "^8.2.8",
"@storybook/nextjs": "^8.2.8",
"@storybook/react": "^8.2.8",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/jest": "^29.5.12",
"@types/node": "22.1.0",
"@types/nprogress": "^0.2.3",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.3",
"babel-jest": "^29.7.0",
"cypress": "^13.13.2",
"dotenv": "^16.4.5",
"eslint": "8.30.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-next": "^13.1.1",
"eslint-config-prettier": "9.0.0",
"eslint-config-react": "1.x",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^3.4.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-testing-library": "6.0.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.8",
"postcss": "^8.4.41",
"prettier": "^2.8.1",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"storybook": "^8.2.8",
"stylelint": "^15.10.2",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^34.0.0",
"swagger-typescript-api": "^13.0.16",
"tailwindcss": "3.4.9",
"tailwindcss-animate": "^1.0.7",
"ts-jest": "^29.2.4",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.1.6"
},
"license": "ISC",
"lint-staged": {
"**/*.{json,css,scss,md}": [
"prettier --write"
],
"**/*.css": "stylelint --fix",
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"engines": {
"pnpm": ">=8.2.0",
"node": ">=20.0.0"
}
}