forked from joeyyy09/react-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.49 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
{
"name": "@react-ui-org/react-ui",
"description": "React UI is a themeable UI library for React apps.",
"version": "0.55.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/react-ui.js",
"repository": {
"type": "git",
"url": "https://github.com/react-ui-org/react-ui"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"build": "webpack --mode=production && webpack --mode=development",
"copy": "npm run copy:css && npm run copy:js",
"copy:css": "cp src/docs/_assets/generated/react-ui.css dist && cp src/docs/_assets/generated/react-ui.development.css dist",
"copy:js": "cp src/docs/_assets/generated/react-ui.js dist && cp src/docs/_assets/generated/react-ui.development.js dist",
"eslint": "eslint --ext js,jsx src",
"jest": "jest src --coverage",
"lint": "npm run eslint && npm run markdownlint && npm run stylelint",
"markdownlint": "markdownlint-cli2 \"CONTRIBUTING.md\" \"README.md\" \"RELEASING.md\" \"src/**/*.md\"",
"postbuild": "npm run copy",
"postinstall": "cp -n .env.dist .env || true",
"precopy": "rm -rf dist && mkdir dist",
"prepublishOnly": "npm run build",
"start": "webpack --watch --mode=development",
"stylelint": "stylelint \"src/**/*.scss\" --config stylelint.config.js",
"test": "npm run jest"
},
"dependencies": {
"normalize.css": "^8.0.1"
},
"peerDependencies": {
"prop-types": "^15.8.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.22.11",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-spread": "^7.22.5",
"@babel/preset-env": "^7.22.14",
"@babel/preset-react": "^7.22.5",
"@babel/register": "^7.22.5",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@visionappscz/eslint-config-visionapps": "^1.7.0",
"@visionappscz/stylelint-config": "^3.0.0",
"autoprefixer": "^10.4.15",
"babel-jest": "^29.6.4",
"babel-loader": "^9.1.3",
"core-js": "^3.32.1",
"css-loader": "^6.10.0",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"markdownlint-cli2": "~0.9.2",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.29",
"postcss-loader": "^7.3.3",
"prop-types": "^15.8.1",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"stylelint": "^14.16.1",
"stylelint-webpack-plugin": "^4.1.1",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.69.1",
"webpack-cli": "^5.1.4",
"webpack-visualizer-plugin2": "^1.0.0"
},
"resolutions": {
"@babel/plugin-transform-spread": "7.12.1"
}
}