-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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
{
"name": "hexagon-chart",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "tsc && webpack",
"test": "jest --coverage --watchAll",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy-storybook": "npm run build-storybook && gh-pages -d storybook-static"
},
"author": {
"name": "jukangpark",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nkia-development/hexagon-chart.git"
},
"homepage": "https://github.com/nkia-development.github.io/hexagon-chart",
"license": "MIT",
"files": [
"dist/"
],
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@chromatic-com/storybook": "^1.6.1",
"@eslint/js": "^9.7.0",
"@storybook/addon-essentials": "^8.2.6",
"@storybook/addon-interactions": "^8.2.6",
"@storybook/addon-links": "^8.2.6",
"@storybook/addon-onboarding": "^8.2.6",
"@storybook/addon-webpack5-compiler-swc": "^1.0.4",
"@storybook/blocks": "^8.2.6",
"@storybook/react": "^8.2.6",
"@storybook/react-webpack5": "^8.2.6",
"@storybook/test": "^8.2.6",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-svg-jsx": "^1.2.4",
"gh-pages": "^6.1.1",
"globals": "^15.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"jest-junit": "^16.0.0",
"jest-localstorage-mock": "^2.4.26",
"prettier": "^3.3.3",
"storybook": "^8.2.6",
"ts-jest": "^29.2.3",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hexgrid": "^2.0.1",
"styled-components": "^6.1.12"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}