-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
140 lines (140 loc) · 4.73 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "@unstoppabledomains/ui-kit",
"version": "0.3.25",
"private": false,
"description": "A set of common Unstoppable Domains components",
"keywords": [
"react",
"react-component",
"mui",
"material-ui",
"tss",
"storybook",
"stories",
"ui",
"kit"
],
"homepage": "https://github.com/unstoppabledomains/UI-Kit#readme",
"bugs": {
"url": "https://github.com/unstoppabledomains/UI-Kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unstoppabledomains/UI-Kit.git"
},
"license": "MIT",
"sideEffects": false,
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"scripts": {
"build": "rm -rf dist && yarn build:cjs && yarn build:esm && yarn build:types",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir dist --extensions \".ts,.tsx\"",
"build:esm": "BABEL_ENV=esm babel src --out-dir dist/esm --extensions \".ts,.tsx\"",
"build:types": "tsc --project tsconfig.build.json",
"copy-package-files": "cp -rf package.json README.md LICENSE CHANGELOG.md dist",
"dist": "yarn build && yarn copy-package-files && yarn package-modules",
"eslint:check": "eslint \"**/*.{js,ts,tsx,json,md,mdx}\"",
"eslint:fix": "eslint \"**/*.{js,ts,tsx,json,md,mdx}\" --fix",
"package-modules": "node ./scripts/createModulePackages.js",
"prepare": "([ -d ./.git ] && husky install) || echo \"Skipping husky install since package does not have .git folder\"",
"prettier:check": "prettier --check --config .prettierrc --ignore-path .prettierignore \"**/*.{js,ts,tsx,json,md,mdx}\"",
"prettier:fix": "prettier --write -l --config .prettierrc --ignore-path .prettierignore \"**/*.{js,ts,tsx,json,md,mdx}\"",
"storybook:build": "build-storybook",
"storybook:deploy": "storybook-to-ghpages",
"storybook:start": "start-storybook -p 6006",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"tsc": "tsc --noEmit --emitDeclarationOnly false"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,md,mdx}": [
"eslint --fix",
"prettier --write -l"
]
},
"dependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.66",
"@mui/material": "^5.3.1",
"tss-react": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@storybook/addon-docs": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/storybook-deployer": "^2.8.12",
"@storybook/testing-react": "^1.3.0",
"@storybook/theming": "^6.5.12",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"eslint": "8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-mdx": "^2.0.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-exports": "^0.7.0",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-tss-unused-classes": "^0.0.3",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^27.4.7",
"jest-environment-jsdom": "^27.4.7",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"@types/react-dom": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"engines": {
"node": "16.x.x",
"yarn": "1.22.x"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}