-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.47 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@hahow/hahow-design",
"version": "0.14.0",
"description": "hahow-design React component",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build-storybook": "build-storybook -s public",
"build": "nwb build-react-component --no-demo",
"clean": "nwb clean-module && nwb clean-demo",
"lint": "eslint --ext js,jsx src",
"prepublishOnly": "npm run build",
"snapshot": "build-storybook && percy-storybook",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006 -s public",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@crello/react-lottie": "0.0.7",
"antd": "^3.26.0",
"lodash": "^4.17.15",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"styled-system": "^5.1.4"
},
"peerDependencies": {
"react": "16.x",
"styled-components": ">= 5"
},
"devDependencies": {
"@percy/storybook": "^3.2.0",
"@semantic-release/git": "^7.0.18",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-docs": "^5.2.8",
"@storybook/addon-knobs": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addon-viewport": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.13.0",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-inline-react-svg": "^0.5.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.0.0",
"nwb": "0.23.x",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^5.0.0"
},
"author": "",
"homepage": "",
"license": "MIT",
"repository": "git://github.com/hahow/hahow-design.git",
"keywords": [
"react-component"
],
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
[
"import",
{
"libraryName": "antd",
"libraryDirectory": "es",
"style": "css"
}
],
"inline-react-svg",
[
"inline-json-import",
{}
],
"transform-object-rest-spread"
]
}
}