This repository was archived by the owner on Jul 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.6 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.6 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@rgsystem/lib-ui",
"version": "8.0.0",
"description": "React components library for the dashboard",
"main": "lib/index.js",
"browser": "lib/index.umd.js",
"module": "lib/index.es.js",
"files": [
"/lib"
],
"publishConfig": {
"access": "public"
},
"storybook-deployer": {
"gitUsername": "Mesteche",
"gitEmail": "meztchek@gmail.com",
"commitMessage": "Deploy Storybook to GitHub Pages"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"lint": "eslint --ext .js --ext .jsx src/",
"lint:fix": "eslint --ext .js --ext .jsx src/ --fix",
"test": "jest --json --outputFile=.jest-test-results.json",
"build": "rollup -c",
"build:storybook": "build-storybook -o docs",
"prepublishOnly": "rm -rf lib && npm run build"
},
"peerDependencies": {
"@material-ui/core": "^4.9.14",
"@material-ui/lab": "^4.0.0-alpha.50",
"@material-ui/pickers": "^3.2.10",
"@styled-system/css": "^5.x",
"react": "^16.x",
"react-dom": "^16.x",
"styled-components": "^5.x",
"styled-icons": "^9.x",
"styled-system": "^5.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "echo style: $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rgsystemes/lib-ui.git"
},
"keywords": [
"react",
"rgsystem",
"components",
"ui"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rgsystemes/lib-ui/issues"
},
"homepage": "https://rgsystemes.github.io/lib-ui",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.9.14",
"@material-ui/lab": "^4.0.0-alpha.50",
"@material-ui/pickers": "^3.2.10",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@storybook/addon-a11y": "^5.3.18",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-jest": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addon-notes": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@storybook/storybook-deployer": "^2.8.6",
"@styled-system/css": "^5.1.5",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^9.5.0",
"@testing-library/react-hooks": "^3.2.1",
"@testing-library/user-event": "^8.1.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"clsx": "^1.1.0",
"core-js": "^3.6.5",
"date-fns": "^2.13.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^24.9.0",
"lint-staged": "^10.2.2",
"plop": "^2.6.0",
"react": "^16.13.1",
"react-animate-height": "^2.0.21",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.13.1",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^5.3.0",
"storybook-addon-styled-component-theme": "^1.3.0",
"styled-components": "^5.1.0",
"styled-icons": "^9.5.0",
"styled-system": "^5.1.5"
},
"dependencies": {}
}