-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.73 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
{
"name": "@songjp/mie-ui",
"version": "1.0.2",
"description": "",
"main": "dist/mie-ui.js",
"module": "es/index.js",
"typings": "./types/index.d.ts",
"sideEffects": [
"*.less"
],
"scripts": {
"test": "jest",
"build:types": "tsc",
"build": "node ./bin/rollup.js && yarn build:types",
"start": "yarn storybook",
"storybook": "start-storybook -p 6006",
"build:docs": "build-storybook",
"lint": "eslint --ext .tsx,.ts,.js,.jsx components/**",
"prepare": "husky install",
"change-log": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"files": [
"components",
"dist",
"es",
"lib",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yes1am/mie-ui.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yes1am/mie-ui/issues"
},
"homepage": "https://github.com/yes1am/mie-ui#readme",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^6.2.8",
"@storybook/addon-essentials": "^6.2.8",
"@storybook/addon-links": "^6.2.8",
"@storybook/react": "^6.2.8",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-portal": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"autoprefixer": "9.0",
"babel-loader": "^8.2.2",
"conventional-changelog-cli": "^2.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"less": "^4.1.1",
"less-loader": "7.3",
"less-plugin-npm-import": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.45.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "3.1.8",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/enzyme": "^3.10.8",
"classnames": "^2.3.1",
"react-portal": "^4.2.1"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}