-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.22 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
{
"name": "@react-ui-org/docoff",
"description": "Library of custom HTML elements for creating flexible and simple to use `React.Component` documentation",
"version": "0.5.4",
"keywords": [
"react",
"documentation",
"ui",
"components",
"ui-library",
"ui-components",
"pattern-library",
"react-components",
"react-component-library"
],
"homepage": "https://github.com/react-ui-org/docoff",
"author": "The React UI Authors (https://github.com/react-ui-org/react-ui/graphs/contributors)",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-ui-org/react-ui/issues"
},
"browser": "public/generated/bundle.js",
"repository": {
"type": "git",
"url": "https://github.com/react-ui-org/docoff"
},
"engines": {
"node": ">=16.14.0",
"npm": ">=8.5.1"
},
"dependencies": {
"@swc/wasm-web": "^1.6.7",
"@ungap/custom-elements": "^1.0.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"core-js": "^3.22.7",
"markdown-it": "^13.0.1",
"path-browserify": "^1.0.1",
"prismjs": "^1.27.0",
"process": "^0.11.10",
"react-docgen": "^7.0.3"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.10",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.16.9",
"@visionappscz/eslint-config-visionapps": "^1.5.0",
"babel-loader": "^8.2.3",
"babel-plugin-prismjs": "^2.1.0",
"css-loader": "^6.6.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^28.1.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"uglify-js": "^3.15.5",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
},
"scripts": {
"build": "webpack --mode=production",
"prepublishOnly": "npm run build",
"start": "webpack serve --mode=development",
"test": "npm run test:eslint && npm run test:jest",
"test:eslint": "eslint --ext js,jsx src public/exampleJS",
"test:jest": "jest"
}
}