-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.88 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
{
"name": "mixin-ui",
"version": "0.0.0-semantically-released",
"description": "",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest --watch",
"test:once": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"publish-storybook": "npm publish --access=public",
"lint:staged": "git diff --cached --name-only --diff-filter=ACRM | grep \".js$\" | xargs ./node_modules/.bin/eslint --ext .js"
},
"keywords": [],
"author": "",
"license": "MIT",
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"repository": {
"type": "git",
"url": "https://github.com/no-de-lab/mixin-ui.git"
},
"bugs": {
"url": "https://github.com/no-de-lab/mixin-ui.git/issues"
},
"storybook-deployer": {
"gitUsername": "mixin",
"gitEmail": "[email protected]",
"commitMessage": "Deploy Storybook [skip ci]"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@storybook/addon-actions": "^6.1.6",
"@storybook/addon-controls": "^6.1.11",
"@storybook/addon-docs": "^6.1.6",
"@storybook/addon-essentials": "^6.1.11",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^6.1.6",
"@storybook/addon-links": "^6.1.6",
"@storybook/addons": "^6.1.6",
"@storybook/react": "^6.1.6",
"@storybook/storybook-deployer": "^2.8.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"babel-preset-react-app": "^10.0.0",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^17.0.1",
"rollup": "^2.33.3",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sass": "^1.2.2",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}