-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
134 lines (134 loc) · 6.08 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@sibvisions/reactui",
"homepage": ".",
"version": "2.3.2",
"main": "moduleIndex.js",
"types": "moduleIndex.d.ts",
"license": "Apache-2.0 license",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@fortawesome/fontawesome-free": "^5.15.4",
"@react-leaflet/core": "^2.1.0",
"@sibvisions/reactui-designer": "^1.2.4",
"@types/babel__generator": "^7.6.4",
"@types/googlemaps": "^3.40.3",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.54",
"@types/radium": "^0.24.3",
"@types/react": "^18.2.48",
"@types/react-helmet": "^6.1.0",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@types/react-signature-canvas": "^1.0.2",
"@types/react-transition-group": "^4.4.0",
"@types/tinycolor2": "^1.4.2",
"@types/underscore": "^1.10.24",
"@types/xml2js": "^0.4.8",
"buffer": "^6.0.3",
"chart.js": "3.3.2",
"chartjs-adapter-date-fns": "^3.0.0",
"circular-dependency-plugin": "^5.2.2",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"date-fns": "2.22.1",
"date-fns-tz": "^1.3.7",
"file-loader": "^6.1.1",
"history": "5.0.0",
"js-big-decimal": "^1.4.1",
"jsdoc": "^3.6.6",
"leaflet": "^1.9.4",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.31",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.7.1",
"primeflex": "2.0.0-rc.1",
"primeicons": "^6.0.1",
"primereact": "10.8.4",
"query-string": "^6.13.1",
"quill": "^1.3.7",
"react-error-boundary": "^3.1.4",
"react-helmet": "^6.1.0",
"react-leaflet": "^4.2.1",
"react-rnd": "^10.3.5",
"react-router-dom": "^5.2.0",
"react-signature-canvas": "^1.0.5",
"react-topbar-progress-indicator": "^4.1.0",
"react-transition-group": "^4.4.1",
"rxjs": "^6.6.2",
"sass": "^1.57.1",
"sass-loader": "^12.6.0",
"stream": "^0.0.2",
"style-loader": "^2.0.0",
"timers": "^0.1.1",
"tinycolor2": "^1.4.2",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"ui-gauges": "git+https://github.com/sibvisions/gauges.git",
"underscore": "^1.13.1",
"xml2js": "^0.5.0"
},
"overrides": {
"autoprefixer": "10.4.5"
},
"scripts": {
"start": "react-scripts start",
"create-build-date": "node -p \"new Date()\" > build/builddate.txt",
"build": "react-scripts build && rimraf build/config.json && rimraf build/altConfig.json && npm run create-build-date && sass --no-source-map src/application-frame/styling/color-schemes:build/color-schemes && sass --no-source-map src/application-frame/styling/themes:build/themes",
"build-ci": "CI=false && react-scripts build && rimraf build/config.json && rimraf build/altConfig.json && npm run create-build-date && sass --no-source-map src/application-frame/styling/color-schemes:build/color-schemes && sass --no-source-map src/application-frame/styling/themes:build/themes && zip -r reactBuild build",
"clean": "run-script-os",
"clean:windows": "if exist dist rmdir /S /Q dist",
"clean:default": "test -d dist/ && rm -rf dist/; exit 0",
"clean-ci": "rm -rf dist",
"pre-package": "npm run build && npm run clean && npm run bundle && node dist/SetupPackage.js",
"pre-package-ci": "npm run build && npm run clean-ci && npm run bundle && node dist/SetupPackage.js",
"build-patch": "npm run pre-package && npm version patch && node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts && cd dist && npm version patch && npm publish",
"build-minor": "npm run pre-package && npm version minor && node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts && cd dist && npm version minor && npm publish",
"build-major": "npm run pre-package && npm version major && node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts && cd dist && npm version major && npm publish",
"build-patch-ci": "npm run pre-package-ci && npm version patch && node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts && cd dist && npm version patch && npm publish --access public",
"build-minor-ci": "npm run pre-package-ci && npm version minor && node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts && cd dist && npm version minor && npm publish --access public",
"build-major-ci": "npm run pre-package-ci && npm version major && node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts && cd dist && npm version major && npm publish --access public",
"bundle": "webpack -c ./webpack.config.js",
"devbundle": "webpack -c ./webpack.config-dev.js",
"test": "react-scripts test",
"createdoc": "jsdoc src -r -d docs",
"eject": "react-scripts eject",
"scss-schemes": "sass --watch --no-source-map src/application-frame/styling/color-schemes:public/color-schemes",
"scss-themes": "sass --watch --no-source-map src/application-frame/styling/themes:public/themes"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/leaflet": "^1.9.8",
"@types/quill": "^1.3.10",
"@types/react-dom": "^18.0.0",
"@types/resize-observer-browser": "^0.1.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"rimraf": "^3.0.2",
"rmdir": "^1.2.0",
"run-script-os": "^1.1.6",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
}
}