-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "blue-web",
"version": "1.7.0",
"description": "UI components built on top of Bootstrap 5",
"license": "LGPL-3.0-or-later",
"homepage": "https://bruegmann.github.io/blue-web/v1",
"repository": {
"type": "git",
"url": "https://github.com/bruegmann/blue-react.git"
},
"bugs": {
"url": "https://github.com/bruegmann/blue-react/issues"
},
"scripts": {
"start": "react-scripts start",
"build-docs": "react-scripts build && node indexCssSections.js && node indexJsSections.js",
"build-types": "tsc --declaration --emitDeclarationOnly --declarationDir ./dist/js --noEmit false --project tsconfig.build.json",
"build": "babel ./src/js --out-dir ./dist/js --extensions \".tsx,.js,.ts\"",
"build-bundles": "webpack",
"build-css-legacy": "node ./setVersionToStyleScss.js && node-sass ./dist/style.scss ./dist/style.css && npx postcss ./dist/style.css --use autoprefixer -r && npx postcss ./dist/style.css --use postcss-minify -o ./dist/style.min.css",
"build-css": "node ./setVersionToStyleScss.js && sass --load-path=. ./dist/style.scss:./dist/style.css && npx postcss ./dist/style.css --use autoprefixer -r && npx postcss ./dist/style.css --use postcss-minify -o ./dist/style.min.css",
"build-neu-css-legacy": "node-sass ./dist/neu.scss ./dist/neu.css && npx postcss ./dist/neu.css --use autoprefixer -r && npx postcss ./dist/neu.css --use postcss-minify -o ./dist/neu.min.css",
"build-neu-css": "sass --load-path=. ./dist/neu.scss:./dist/neu.css && npx postcss ./dist/neu.css --use autoprefixer -r && npx postcss ./dist/neu.css --use postcss-minify -o ./dist/neu.min.css",
"build-release": "npm run build-types && npm run build && npm run build-bundles && npm run build-css",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build-docs",
"deploy": "gh-pages --dist build --dest v1",
"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",
"bootstrap": "~5.3.3"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.9.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/bootstrap": "^5.0.17",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.47",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^13.5.0",
"autoprefixer": "^10.3.6",
"blue-react": "file:../blue-react/blue-react-10.0.0.tgz",
"gh-pages": "^3.1.0",
"license-report": "^6.2.0",
"lint-staged": "^11.1.2",
"node-sass": "^9.0.0",
"postcss-cli": "^9.0.1",
"postcss-minify": "^1.1.0",
"prettier": "2.4.1",
"react": "^18.1.0",
"react-bootstrap-icons": "^1.9.1",
"react-dom": "^18.1.0",
"react-markdown": "^8.0.3",
"react-router-dom": "^5.3.3",
"react-scripts": "^5.0.1",
"react-syntax-highlighter": "^15.4.3",
"reactstrap": "^9.0.0-0",
"sass": "~1.77.6",
"typescript": "^4.3.5",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}