-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "microbundle-react-jsx-demo",
"version": "0.0.0",
"source": "src/index.jsx",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"description": "demo",
"repository": "luxp/microbundle-react-jsx-demo",
"author": {
"name": "luxp",
"email": "[email protected]",
"url": "luxianpo.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build": "rm -rf dist && microbundle --jsx React.createElement",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"files": [
"dist"
],
"keywords": [
"react",
"component"
],
"dependencies": {
"prop-types": "^15.6.0"
},
"devDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"@storybook/react": "^3.4.8",
"@storybook/addons": "^3.4.8",
"@storybook/addon-storyshots": "^3.4.7",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0"
},
"peerDependencies": {
"react": ">=16"
},
"license": "MIT"
}