-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 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
{
"name": "recharts-storybook",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && start-storybook -p 6006",
"build": "mkdirp ./build && build-storybook -o ./build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"d3-shape": "^3.1.0",
"date-fns": "^2.28.0",
"fs-extra": "^9.0.1",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"recharts": "^2.1.14"
},
"devDependencies": {
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-docs": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.5.12",
"babel-loader": "^8.1.0",
"css-loader": "^4.2.0",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^4.3.0",
"storybook-addon-jsx": "^7.3.14",
"style-loader": "^1.2.1",
"typescript": "^4.8.4",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"bin": {
"minimal-reactjs-boilerplate": "./bin/start.js"
}
}