forked from vertigis/vertigis-web-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.86 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
{
"name": "@vertigis/web-sdk",
"version": "0.0.0-semantically-released",
"description": "The SDK for extending VertiGIS Studio Web",
"repository": {
"type": "git",
"url": "git+https://github.com/geocortex/vertigis-web-sdk.git"
},
"author": "VertiGIS Ltd. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/geocortex/vertigis-web-sdk/issues"
},
"homepage": "https://github.com/geocortex/vertigis-web-sdk#readme",
"files": [
"bin",
"config",
"lib",
"scripts",
"template"
],
"type": "module",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"bin": {
"vertigis-web-sdk": "bin/vertigis-web-sdk.js"
},
"scripts": {
"build": "cd template && npm link \"../\" --no-package-lock && npm run build",
"create": "cross-env SDK_LOCAL_DEV=true node bin/vertigis-web-sdk.js create",
"start": "cd template && npm link \"../\" --no-package-lock && npm run start",
"test": "node ./test/index.js",
"prettier": "prettier --write \"**/*.json\" \"**/*.js\""
},
"dependenciesComments": {
"fork-ts-checker-webpack-plugin": "Support for eslint was removed in 7.x. We need to stay on 6.x until we find a replacement strategy for linting.",
"semantic-release": "v20.0 onwards requires Node 18."
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "~5.48.2",
"@typescript-eslint/parser": "~5.48.2",
"chalk": "~5.2.0",
"clean-webpack-plugin": "~4.0.0",
"css-loader": "~6.7.2",
"eslint": "~8.32.0",
"eslint-config-prettier": "~8.6.0",
"eslint-plugin-only-warn": "~1.1.0",
"eslint-plugin-react": "~7.32.1",
"eslint-plugin-react-hooks": "~4.6.0",
"fork-ts-checker-webpack-plugin": "~6.5.2",
"fs-extra": "~11.1.0",
"html-webpack-plugin": "~5.5.0",
"node-fetch": "~2.6.7",
"postcss-loader": "~7.0.0",
"postcss-preset-env": "~7.8.3",
"style-loader": "~3.3.1",
"terser-webpack-plugin": "~5.3.3",
"ts-loader": "~9.4.1",
"url-loader": "~4.1.1",
"webpack": "~5.75.0",
"webpack-dev-server": "~4.11.1"
},
"devDependencies": {
"@types/node": "16.18.11",
"@vertigis/web": "^5.20.0",
"conventional-changelog-conventionalcommits": "5.0.0",
"cross-env": "7.0.3",
"execa": "6.1.0",
"lint-staged": "13.1.0",
"p-retry": "5.1.2",
"playwright-chromium": "1.29.2",
"prettier": "2.8.3",
"semantic-release": "19.0.5",
"simple-git-hooks": "2.8.1",
"typescript": "4.9.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,json,ts,tsx,md,xml}": "prettier --write"
}
}