-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.36 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
{
"name": "official",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "yarn pathpida && next build",
"start": "serve out",
"lint:eslint": "eslint --max-warnings 0 . --ignore-path .eslintignore --cache --cache-strategy content --cache-file=node_modules/.cache/eslint/.eslintcache",
"lint:prettier": "prettier --check . --ignore-path .prettierignore --cache --cache-strategy content",
"lint:ls": "ls-lint",
"lint:cspell": "cspell '**' '**/.*' '**/.*/**'",
"fix:eslint": "eslint --fix --max-warnings 0 . --ignore-path .eslintignore --cache --cache-strategy content --cache-file=node_modules/.cache/eslint/.eslintcache",
"fix:prettier": "prettier --write . --ignore-path .prettierignore --cache --cache-strategy content",
"lint-staged": "lint-staged",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"pathpida": "pathpida --enableStatic --ignorePath .pathpidaignore --output src/utils/ && prettier --write 'src/utils/$path.ts'",
"icons": "svgr -d src/components/base/Icons src/assets/icons && eslint --fix 'src/components/base/Icons'",
"images": "ts-node src/scripts/generateImages.ts",
"lighthouse": "ts-node src/scripts/lighthouse.ts",
"husky": "husky install",
"clean:cspell": "ts-node src/scripts/cleanCspellWords.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@hookform/resolvers": "^2.9.11",
"clsx": "^1.2.1",
"next": "14.2.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.7",
"the-new-css-reset": "^1.11.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@ls-lint/ls-lint": "^2.0.0",
"@storybook/addon-a11y": "^7.5.3",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/nextjs": "^7.5.3",
"@storybook/react": "^7.5.3",
"@svgr/cli": "^6.5.1",
"@types/micromatch": "^4.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "18.17.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@vanilla-extract/css": "^1.12.0",
"@vanilla-extract/next-plugin": "^2.1.3",
"@vanilla-extract/recipes": "^0.4.0",
"@vanilla-extract/sprinkles": "^1.6.1",
"@vanilla-extract/webpack-plugin": "^2.2.0",
"chromatic": "^6.4.3",
"cspell": "^6.31.2",
"eslint": "^8.32.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-storybook": "^0.6.15",
"git-cz": "^4.9.0",
"husky": "^7.0.0",
"lighthouse": "^10.3.0",
"lint-staged": "^12.1.2",
"micromatch": "^4.0.8",
"minimist": "^1.2.8",
"pathpida": "^0.20.1",
"prettier": "^2.8.3",
"serve": "^14.2.1",
"sharp": "^0.32.6",
"storybook": "^7.5.3",
"ts-node": "^10.9.1",
"typescript": "4.9.5",
"webpack-merge": "^5.9.0"
},
"engines": {
"node": "18.17.0",
"npm": "use yarn instead",
"yarn": "4.0.2"
},
"resolutions": {
"@types/react": "18.2.37"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"packageManager": "yarn@4.0.2"
}