-
-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.2 KB
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
{
"name": "qwc2-demo-app",
"version": "2026.02.16",
"description": "Demo application based on QGIS Web Client",
"author": "Sourcepole",
"license": "BSD-2-Clause",
"repository": "git@github.com:sourcepole/qwc2-demo-app.git",
"private": true,
"dependencies": {
"qwc2": "2026.02.16"
},
"devDependencies": {
"@babel/core": "^7.29.6",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-class-properties": "^7.28.6",
"@babel/plugin-transform-object-rest-spread": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@furkot/webfonts-generator": "^2.0.3",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/react": "^19.2.13",
"babel-loader": "^10.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "^7.1.3",
"eslint": "^9.39.2",
"eslint-plugin-perfectionist": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"html-webpack-plugin": "^5.6.6",
"mkdirp": "^3.0.1",
"object-path": "^0.11.8",
"react-docgen": "^8.0.2",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"typescript": "^5.9.3",
"webpack": "^5.105.0",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.5"
},
"scripts": {
"prod": "npm run tsupdate && npm run themesconfig && npm run iconfont && webpack --mode production --progress",
"start": "npm run tsupdate && npm run themesconfig && npm run iconfont && webpack serve --mode development --progress --host 0.0.0.0 --port 8081",
"iconfont": "npx qwc_build_iconfont",
"themesconfig": "npx qwc_gen_themesconfig",
"tsupdate": "npx qwc_update_translations",
"build": "npm run prod",
"analyze": "webpack --mode production --progress --env ANALYZE=1",
"release": "node -e \"process.exit(require('os').platform() === 'win32' ? 0 : 1)\" && qwc2\\scripts\\package-commands.bat release || ./qwc2/scripts/package-commands.sh release"
}
}