-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "@stevent-team/react-chartlet",
"version": "0.3.1",
"description": "A simple and tiny charting library for React",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"author": "Stevent team (https://stevent.dev)",
"license": "MIT",
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "parcel build",
"ci:release": "yarn build && yarn changeset publish"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@changesets/cli": "^2.24.4",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.4.20",
"@storybook/addon-links": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"babel-loader": "^8.2.4",
"parcel": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook-dark-mode": "^1.0.9"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"files": [
"dist"
]
}