-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.94 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.94 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
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
{
"private": true,
"workspaces": {
"packages": [
"packages/terriajs",
"packages/terriajs-cesium/packages/engine",
"packages/terriajs-cesium/packages/widgets",
"packages/leylines-server",
"packages/plugin-sample"
],
"nohoist": [
"**/husky"
]
},
"name": "leylines-map",
"version": "0.4.6",
"description": "Geospatial catalog explorer based on TerriaJS.",
"license": "Apache-2.0",
"engines": {
"node": ">= 20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/leylines/leylinesMap"
},
"dependencies": {
"leylines-server": "https://github.com/leylines/leylines-server#main"
},
"config": {
"docker": {
"name": "leylinesmap",
"include": "wwwroot node_modules serverconfig.json index.js package.json version.js",
"dockerfile": "deploy/docker/Dockerfile"
}
},
"resolutions": {
"terriajs-plugin-api": "https://github.com/leylines/plugin-api#main",
"terriajs-plugin-sample": "https://github.com/leylines/plugin-sample#main",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"fetch-mock": "^11.1.5",
"fork-ts-checker-notifier-webpack-plugin": "^9.0.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"fs-extra": "^7.0.1",
"gulp": "^5.0.1",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"is-subdir": "^1.2.0",
"json5": "^2.1.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.10.2",
"minimist": "^1.2.8",
"msw": "^2.12.14",
"node-notifier": "^10.0.1",
"plugin-error": "^2.0.1",
"prettier": "3.8.1",
"pretty-quick": "^4.2.2",
"prop-types": "^15.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resolve-url-loader": "^5.0.0",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"svg-sprite": "^2.0.4",
"terriajs": "https://github.com/leylines/terriajs#main",
"terriajs-cesium": "23.0.2",
"terriajs-plugin-api": "0.0.1-alpha.17",
"terriajs-plugin-sample": "0.0.1-alpha.8",
"typescript": "^5.9.2",
"urijs": "^1.18.12",
"webpack": "^5.105.4",
"webpack-cli": "^5.1.4",
"yargs": "^17.7.2"
},
"scripts": {
"prepare": "if test \"$CI\" != \"true\" ; then husky install; fi",
"start": "leylines-server --config-file serverconfig.json",
"build": "gulp release",
"gulp": "gulp",
"prettier": "prettier --write .",
"prettier-check": "prettier --check .",
"postinstall": "echo 'Setup complete. Use \"yarn gulp dev\" for local development.'"
}
}