-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.97 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
{
"name": "blue-react",
"version": "10.0.0",
"description": "Blue React Components",
"license": "LGPL-3.0-or-later",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://bruegmann.github.io/blue-react/v10",
"repository": {
"type": "git",
"url": "https://github.com/bruegmann/blue-react.git"
},
"bugs": {
"url": "https://github.com/bruegmann/blue-react/issues"
},
"scripts": {
"dev": "vite",
"start": "npm run dev",
"build-docs": "tsc -b && vite build --base=/blue-react/v10/ && npm run docgen",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"build-types": "tsc -p tsconfig.app.json --declaration --emitDeclarationOnly --declarationDir ./dist/types --noEmit false --composite false",
"build": "babel ./src/components --out-dir ./dist/components --extensions \".tsx,.js,.ts\"",
"build-release": "npm run build-types && npm run build && npm run docgen",
"docgen": "react-docgen ./src/components/ --ignore Layout -o ./src/docs/data/docs.json --extension tsx && node followUpDocs && npm run license-report",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build-docs",
"deploy": "gh-pages --dist deployment --dest v10",
"prepublishOnly": "npm i && npm run build-release",
"release": "npm publish && npm run deploy",
"prettier": "npx prettier --write .",
"license-report": "npx license-report --prod --output=json > ./src/docs/data/license-report.json"
},
"dependencies": {
"@popperjs/core": "^2.11.5",
"blue-web": "^1.8.0",
"bootstrap": "~5.3.3",
"clsx": "^1.1.1"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.9.0",
"@types/bootstrap": "^5.0.17",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"gh-pages": "^6.3.0",
"license-report": "^6.2.0",
"prettier": "2.4.1",
"react": "^19.0.0",
"react-bootstrap-icons": "^1.9.1",
"react-docgen": "^5.4.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^5.3.3",
"react-syntax-highlighter": "^15.4.3",
"sass": "1.77.6",
"typescript": "^5.2.2",
"vite": "^5.3.4"
}
}