-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.04 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
{
"name": "@howso/howso-visuals",
"version": "0.0.0",
"description": "Provides visual components charting and graphics",
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup --config",
"build-storybook": "storybook build",
"chromatic": "chromatic --exit-zero-on-changes",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx src/ --color",
"prebuild": "rimraf lib/*",
"pre-commit": "lint-staged",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collect-coverage",
"storybook": "storybook dev -p 6006",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/howsoai/howso-visuals-ts.git"
},
"contributors": [
"Lance Gliser <lance.gliser@howso.com>"
],
"license": "AGPL-3.0-only",
"files": [
"LICENSE.txt",
"lib"
],
"peerDependencies": {
"classnames": "^2.5.1",
"d3": "^7.9.0",
"d3-array": "^1.2.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tinycolor2": "^1.6.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.6"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@fontsource/inter": "^5.0.5",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-a11y": "^8.4.7",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/d3": "^7.4.3",
"@types/d3-array": "^3.2.1",
"@types/react": "^18.2.14",
"@types/react-plotly.js": "^2.6.3",
"@types/react-router-dom": "^5.3.3",
"@types/tinycolor2": "^1.4.6",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"buffer": "^6.0.3",
"chromatic": "^6.24.1",
"eslint": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-storybook": "^0.11.1",
"husky": "^7.0.4",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^11.2.3",
"lodash": "^4.17.21",
"plotly.js": "^2.31.0",
"plotly.js-strict-dist": "^2.35.0",
"postcss-nesting": "^13.0.0",
"prettier": "^2.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-plotly.js": "^2.6.0",
"rollup": "^4.12.1",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.4.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"umap-js": "^1.4.0",
"vite": "^5.1.6",
"vite-plugin-eslint": "^1.8.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
}
}