-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
108 lines (108 loc) · 4.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "fsd-next-template",
"version": "0.0.1",
"description": "Skeleton front-end project built on top of Next.js",
"license": "MIT",
"author": "Taptima",
"scripts": {
"dev": "next",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write --check",
"format-all": "pnpm run format \"src/**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"lint-js": "eslint --fix",
"lint-js-all": "pnpm run lint-js \"src/**/*.{js,jsx,ts,tsx}\"",
"lint-styles": "stylelint --fix --config .stylelintrc.json",
"lint-styles-all": "pnpm run lint-styles \"src/**/*.{css,scss}\"",
"lint": "pnpm run lint-js-all && pnpm run lint-styles-all && pnpm format-all --check",
"graphql:build": "graphql-codegen --config codegen.yml",
"svg:optimize": "svgo --exclude \".*\\.raw\\.svg\"",
"svg:optimize-all": "pnpm run svg:optimize -f src/shared/assets/icons",
"storybook:dev": "storybook dev -p 6006 -c ./config/storybook --no-open",
"storybook:build": "storybook build -c ./config/storybook",
"test:unit": "jest --config config/jest/jest.config.ts",
"prepare": "husky"
},
"browserslist": [
"last 1 Chrome major versions",
"last 2 Firefox major versions",
"last 2 Safari major versions",
"last 2 Edge major versions",
"last 3 Android major versions",
"last 3 ChromeAndroid major versions",
"last 2 iOS major versions"
],
"engines": {
"node": "~20.12.0",
"pnpm": "^8.7.0"
},
"dependencies": {
"@sentry/nextjs": "^7.118.0",
"async-mutex": "^0.5.0",
"axios": "^1.7.2",
"clsx": "^2.1.1",
"graphql": "^16.9.0",
"next": "14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"sharp": "^0.33.4",
"swr": "^2.2.5",
"typescript": "5.4.5",
"yup": "^1.4.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@next/bundle-analyzer": "^14.2.4",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/nextjs": "^8.1.11",
"@storybook/react": "^8.1.11",
"@storybook/testing-library": "^0.2.2",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-no-relative-import-paths": "^1.5.5",
"eslint-plugin-perfectionist": "^2.11.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"loader-utils": "^3.3.1",
"prettier": "^3.3.2",
"regenerator-runtime": "^0.14.1",
"sass": "^1.77.7",
"storybook": "^8.1.11",
"stylelint": "^16.6.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"svgo": "^3.3.2",
"webpack": "^5.92.1"
},
"pnpm": {
"patchedDependencies": {
"next@14.2.3": "patches/next@14.2.3.patch"
}
}
}