-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.1 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
{
"name": "react-components",
"version": "0.0.1",
"description": "react components",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"type": "module",
"types": "dist/index.d.ts",
"scripts": {
"build": "vite build",
"lint": "eslint . --ext ts,tsx src/",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"**/*.+(js|json|yml|ts|tsx)\"",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hMatoba/react-components.git"
},
"keywords": [
"react"
],
"author": "hMatoba",
"license": "MIT",
"bugs": {
"url": "https://github.com/hMatoba/react-components/issues"
},
"homepage": "https://github.com/hMatoba/react-components#readme",
"devDependencies": {
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/react-vite": "^7.3.2",
"@storybook/testing-library": "^0.2.0",
"@types/react": "^18.2.20",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.66.1",
"storybook": "^7.3.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.5.2"
},
"dependencies": {
"un": "^0.0.0"
}
}