-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.14 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
{
"name": "react-mini-charts",
"description": "A collection of tiny chart components for React projects.",
"version": "0.0.9",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"homepage": "https://github.com/herrherrmann/react-mini-charts#readme",
"bugs": {
"url": "https://github.com/herrherrmann/react-mini-charts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/herrherrmann/react-mini-charts.git"
},
"keywords": [
"react",
"charts",
"dataviz",
"typescript"
],
"dependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"babel-plugin-named-exports-order": "^0.0.2",
"chromatic": "^6.17.3",
"jest": "^29.5.0",
"postcss": "^8.4.21",
"rollup": "^3.20.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"storybook-addon-jsx": "^7.3.14",
"ts-jest": "^29.1.0",
"webpack": "^5.77.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"format": "prettier --write .",
"build": "rm -rf ./dist && rollup -c --bundleConfigAsCjs",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublishOnly": "npm run build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}