-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.25 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.25 KB
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
{
"name": "@wookiejin/react-component",
"version": "0.2.5",
"author": "jhw123",
"license": "MIT",
"typings": "./dist/cjs/index.d.ts",
"sideEffects": true,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"./dist"
],
"types": "./dist/cjs/index.d.ts",
"scripts": {
"rollup": "rollup -c --bundleConfigAsCjs",
"type-check": "tsc --noEmit",
"lint": "eslint --ext .ts,.tsx .",
"style-check": "prettier --check 'src/**/*.{tsx,ts}'",
"release": "yarn rollup && npm publish --access public",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"react-use": "^17.4.0"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.5",
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.6",
"@storybook/react": "^7.6.6",
"@storybook/react-webpack5": "^7.6.6",
"@storybook/test": "^7.6.6",
"@types/react": "^18.2.22",
"@types/react-dom": "^18",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.15.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-storybook": "^0.6.15",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.29.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"storybook": "^7.6.6",
"ts-loader": "^9.3.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"react": "^18.2.0"
},
"description": "This library aims to provide useful semantic colorsets, HOCs and components for easy layout building.",
"repository": {
"type": "git",
"url": "git+https://github.com/jhw123/react-component.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/jhw123/react-component/issues"
},
"homepage": "https://github.com/jhw123/react-component#readme",
"packageManager": "yarn@4.0.2"
}