-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
100 lines (100 loc) · 3.11 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
{
"name": "thorin-parent",
"private": true,
"license": "MIT",
"scripts": {
"m-all": "pnpm m run --workspace-concurrency 1",
"build": "pnpm m-all build",
"build:components": "pnpm -F @ensdomains/thorin build",
"clean": "pnpm m-all clean",
"dev": "pnpm m run dev",
"gen:component": "pnpm node scripts/generateComponent.js",
"gen:icons": "pnpm node scripts/generateIcons.js",
"lint": "pnpm m-all lint",
"lint:components": "pnpm -F @ensdomains/thorin lint",
"lint:docs": "pnpm -F docs lint",
"lint:fix": "pnpm m-all lint:fix",
"lint:format": "prettier --write .",
"lint:types": "pnpm m-all lint:types",
"lint:styles": "stylelint",
"postinstall": "husky install",
"prepublish": "pnpm clean && pnpm build:components",
"size": "pnpm build:components && pnpm size-limit",
"test": "pnpm -F @ensdomains/thorin run test",
"publish:local": "pnpm prepublish && yalc publish components/ --no-scripts --push --up",
"publish": "pnpm clean && pnpm -F @ensdomains/thorin publish"
},
"lint-staged": {
"*.{js,mdx,ts,tsx}": [
"pnpm lint:components",
"pnpm lint:docs"
],
"*.tsx": [
"pnpm lint:styles"
],
"*.{json,md,yml}": [
"pnpm lint:format"
]
},
"devDependencies": {
"@size-limit/preset-big-lib": "^6.0.3",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@svgr/babel-plugin-remove-jsx-attribute": "^6.0.0",
"@svgr/cli": "^5.5.0",
"@svgr/core": "^5.5.0",
"@types/dedent": "^0.7.0",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/styled-components": "^5",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"change-case": "^4.1.2",
"dedent": "^0.7.0",
"eslint": "^7.32.0",
"eslint-config-next": "12.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-mdx": "^1.15.1",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"jest-styled-components": "^7.0.8",
"lint-staged": "^11.2.6",
"postcss-syntax": "^0.36.2",
"prettier": "^2.8.0",
"prompt": "^1.2.0",
"react-docgen-typescript": "^2.1.1",
"react-hook-form": "^7.31.2",
"size-limit": "^6.0.3",
"stylelint": "^14.8.5",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-styled-components": "^0.1.1",
"typescript": "4.9.4",
"utility-types": "^3.10.0"
},
"dependencies": {
"@styled/typescript-styled-plugin": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-transition-state": "^2.1.1",
"styled-components": "^5.3.6"
},
"peerDependencies": {
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-react-hooks": "^4.2.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"pnpm": {
"overrides": {
"ts-morph": "17.0.1"
}
},
"packageManager": "[email protected]"
}