forked from qgis/qwc2-demo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 2.21 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
{
"name": "QWC2App",
"version": "1.1.0",
"description": "QGIS Web Client 2 application",
"author": "Sourcepole",
"license": "BSD-2-Clause",
"repository": "[email protected]:sourcepole/qwc2-demo-app.git",
"private": true,
"workspaces": [
"qwc2"
],
"devDependencies": {
"@babel/core": "7.12.16",
"@babel/eslint-parser": "7.12.16",
"@babel/plugin-proposal-class-properties": "7.12.13",
"@babel/plugin-proposal-object-rest-spread": "7.12.13",
"@babel/preset-env": "7.12.16",
"@babel/preset-react": "7.12.13",
"babel-loader": "8.2.2",
"css-loader": "5.0.2",
"eslint": "7.20.0",
"eslint-plugin-react": "7.22.0",
"file-loader": "6.2.0",
"mkdirp": "1.0.4",
"rimraf": "3.0.2",
"source-map-loader": "^1.1.3",
"stream-browserify": "^3.0.0",
"string-replace-loader": "2.3.0",
"style-loader": "2.0.0",
"url-loader": "4.1.1",
"webpack": "4.46.0",
"webpack-bundle-size-analyzer": "3.1.0",
"webpack-cli": "4.5.0",
"webpack-dev-server": "3.11.2"
},
"scripts": {
"clean": "rimraf dist",
"build": "node -e \"process.exit(require('os').platform() === 'win32' ? 0 : 1)\" && qwc2\\scripts\\package-commands.bat build || ./qwc2/scripts/package-commands.sh build",
"start": "npm run tsupdate && npm run themesconfig && npm run iconfont && webpack serve --progress --host 0.0.0.0 --port 8081",
"iconfont": "node qwc2/scripts/makeIconkit.js",
"themesconfig": "node qwc2/scripts/themesConfig.js",
"prod": "node -e \"process.exit(require('os').platform() === 'win32' ? 0 : 1)\" && qwc2\\scripts\\package-commands.bat prod || ./qwc2/scripts/package-commands.sh prod",
"tsupdate": "node qwc2/scripts/updateTranslations.js",
"analyze": "node -e \"process.exit(require('os').platform() === 'win32' ? 0 : 1)\" && qwc2\\scripts\\package-commands.bat analyze || ./qwc2/scripts/package-commands.sh analyze",
"release": "node -e \"process.exit(require('os').platform() === 'win32' ? 0 : 1)\" && qwc2\\scripts\\package-commands.bat release || ./qwc2/scripts/package-commands.sh release"
}
}