forked from react-ui-org/react-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.94 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@react-ui-org/react-ui",
"description": "React UI is a themeable UI library for React apps.",
"version": "0.48.0",
"keywords": [
"react",
"ui",
"components",
"themeable",
"ui-library",
"ui-components",
"pattern-library",
"component-library",
"react-components",
"react-component-library"
],
"homepage": "https://react-ui.io",
"author": "The React UI Authors (https://github.com/react-ui-org/react-ui/graphs/contributors)",
"contributors": [
"RACOM s.r.o."
],
"license": "MIT",
"bugs": {
"url": "https://github.com/react-ui-org/react-ui/issues"
},
"main": "dist/lib.js",
"repository": {
"type": "git",
"url": "https://github.com/react-ui-org/react-ui"
},
"engines": {
"node": ">=16.14.0 <17",
"npm": ">=8.3.0"
},
"dependencies": {
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-spread": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/register": "^7.16.0",
"@floating-ui/react-dom": "^0.7.1",
"@nejcm/docz-theme-extended": "^2.0.14",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@visionappscz/eslint-config-visionapps": "^1.5.0",
"@visionappscz/stylelint-config": "^3.0.0-rc1",
"autoprefixer": "^10.4.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"concurrently": "^6.4.0",
"core-js": "^3.19.1",
"css-loader": "^5.2.7",
"docz": "^2.3.3-alpha.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-mdx": "^1.16.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gatsby-plugin-sass": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"markdownlint-cli2": "~0.3.2",
"nodemon": "^2.0.15",
"postcss": "^8.4.5",
"postcss-loader": "^4.3.0",
"prism-react-renderer": "^1.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"sass": "^1.47.0",
"sass-loader": "^10.2.0",
"sinon": "^12.0.1",
"style-loader": "^2.0.0",
"stylelint": "^14.2.0",
"stylelint-webpack-plugin": "^2.3.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-visualizer-plugin": "^0.1.11"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"resolutions": {
"@babel/plugin-transform-spread": "7.12.1"
},
"scripts": {
"build": "concurrently \"npm run lib:build\" \"npm run docs:build\"",
"docs:build": "rimraf .docz docs && docz build --dest docs",
"docs:dev": "rimraf .docz && docz dev",
"docs:serve": "rimraf .docz && npm run docs:build && docz serve",
"lib:build": "concurrently \"webpack --mode development --config webpack.config.js\" \"webpack --mode production --config webpack.config.js\"",
"lib:jest": "jest",
"lib:test:js": "concurrently \"eslint --ext js,jsx src/lib tests/propTests\" \"npm run lib:jest\"",
"lib:test:css": "stylelint \"src/**/*.scss\" --config stylelint.config.js",
"markdown:lint": "markdownlint-cli2 \"**/*.md?(x)\" \"#.docz\" \"#dist\" \"#node_modules\" && eslint \"**/*.md?(x)\"",
"markdown:watch": "nodemon --watch . --ext md,mdx --exec \"npm run markdown:lint\"",
"prepublishOnly": "npm run lib:build",
"start": "concurrently --kill-others \"npm run watch\" \"npm run docs:dev\"",
"test": "concurrently \"npm run markdown:lint\" \"npm run lib:test:js\" \"npm run lib:test:css\"",
"watch": "npm run markdown:watch"
}
}