-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.8 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.8 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
{
"name": "spatial",
"version": "1.0.1",
"description": "Module for spatial data and map visualization.",
"main": "backend/www/spatial.js",
"repository": {
"type": "git",
"url": "https://gitlab.prtech.mk/svarog4/svarog-spatial.git"
},
"dependencies": {
"leaflet": "~1.5.1",
"leaflet-polylinedecorator": "^1.6.0",
"leaflet.fullscreen": "^3.0.2",
"perun-core": "git+https://git@gitlab.prtech.mk/svarog4/perun-core#dev",
"proj4": "~2.10.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^5.2.0",
"style-loader": "^4.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.0"
},
"scripts": {
"build": "webpack --mode=production --env=production",
"build-dev": "webpack --mode=development --env=development",
"build-lpis": "npm run build && (cp backend/www/spatial.js ../lpis/node_modules/spatial/backend/www/ || true)",
"build-otsc": "npm run build && (cp backend/www/spatial.js ../otscm_iacs/node_modules/spatial/backend/www/ || true)",
"build-dala": "npm run build && (cp backend/www/spatial.js ../pdna/node_modules/spatial/backend/www/ || true)",
"build-knt-grid-manager": "npm run build && (cp backend/www/spatial.js ../knt-grid-manager/node_modules/spatial/backend/www/ || true)",
"deploy": "npm run build && cd backend && mvn clean package && (cp target/spatial* ../../svarog/osgi-bundles/ || true)",
"dev": "webpack-dev-server --mode=development",
"test": "eslint --fix frontend/ || exit 0"
},
"author": "Perun Tech",
"license": "ISC"
}