-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "luckypear-ui",
"version": "0.0.3",
"module": "dist/index.js",
"license": "MIT",
"types": "dist/types/index.d.ts",
"files": [
"/dist"
],
"devDependencies": {
"@babel/core": "^7.11.6",
"@storybook/addon-actions": "^6.0.21",
"@storybook/addon-essentials": "^6.0.21",
"@storybook/addon-links": "^6.0.21",
"@storybook/addons": "^6.0.21",
"@storybook/react": "^6.0.21",
"@storybook/theming": "^6.0.21",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"emotion-theming": "^10.0.27",
"react-docgen-typescript-loader": "^3.7.2",
"react-is": "^16.13.1",
"rollup": "^2.26.11",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.3",
"semantic-release": "^17.1.1",
"typescript": "^4.0.2",
"@emotion/core": "^10.0.35"
},
"dependencies": {},
"scripts": {
"build": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o build"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
]
}