-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.27 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
{
"name": "kottage-front",
"version": "0.1.0",
"private": true,
"scripts": {
"initialize": "sh scripts/submodule/init.sh && yarn",
"test": "jest",
"dev": "concurrently -n NEXT,TS -c magenta,cyan \"yarn dev:noTs\" \"yarn ts --watch\"",
"dev:noTs": "cp tsconfig.dev.json tsconfig.json && next dev",
"build": "cp tsconfig.production.json tsconfig.json && next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint:style": "stylelint '**/*.module.css'",
"lint:next": "next lint",
"lint": "yarn lint:style & yarn lint:next",
"format:style": "stylelint --fix '**/*.module.css'",
"prepare": "husky install",
"postinstall": "patch-package",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"create-component": "hygen component new",
"generate-client": "openapi-generator-cli generate --generator-key v1.0 && yarn prettier --write --ignore-unknown src/repository/openapi/generated/",
"regenerate-client": "rm -r src/repository/openapi/generated && yarn generate-client",
"ts": "tsc --noEmit --incremental"
},
"dependencies": {
"feed": "4.2.2",
"highlight.js": "11.11.1",
"next": "15.1.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-markdown": "9.0.3",
"rehype-highlight": "7.0.0",
"remark-breaks": "4.0.0",
"swr": "2.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@openapitools/openapi-generator-cli": "2.16.2",
"@storybook/addon-actions": "7.6.17",
"@storybook/addon-essentials": "7.6.17",
"@storybook/addon-links": "7.6.17",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addon-storyshots": "7.6.17",
"@storybook/builder-webpack5": "7.6.17",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/nextjs": "^7.3.0",
"@storybook/react": "7.6.17",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "14.3.1",
"@types/jest": "29.5.14",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/react-test-renderer": "19.0.0",
"autoprefixer": "10.4.20",
"concurrently": "9.1.2",
"eslint": "9.18.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.7",
"hygen": "6.2.11",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "15.4.2",
"msw": "2.2.2",
"msw-storybook-addon": "2.0.0--canary.122.b3ed3b1.0",
"next-sitemap": "4.2.3",
"patch-package": "8.0.0",
"postcss": "8.5.1",
"postcss-loader": "8.1.1",
"prettier": "3.4.2",
"react-test-renderer": "18.3.1",
"storybook": "next",
"storybook-addon-swc": "1.2.0",
"stylelint": "16.13.2",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "36.0.1",
"tailwindcss": "3.4.17",
"tsconfig-paths-webpack-plugin": "4.2.0",
"typescript": "5.7.3",
"undici": "5.28.5",
"waait": "1.0.5",
"whatwg-fetch": "3.6.20"
},
"resolutions": {
"@types/react": "18.3.18"
},
"lint-staged": {
"!(kottage)/**/*": "prettier --write --ignore-unknown",
"!(kottage)/**/*.module.css": "stylelint --fix"
},
"msw": {
"workerDirectory": "public"
}
}