-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 3.18 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
86
87
88
89
90
91
92
93
{
"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/vertigis/vertigis-web-sdk.git"
},
"author": "VertiGIS Ltd. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vertigis/vertigis-web-sdk/issues"
},
"homepage": "https://github.com/vertigis/vertigis-web-sdk#readme",
"files": [
"bin",
"config",
"lib",
"scripts",
"template"
],
"type": "module",
"engines": {
"node": ">=18",
"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\" \"**/*.ts\" \"**/*.tsx\""
},
"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."
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "~7.4.0",
"@typescript-eslint/parser": "~7.4.0",
"chalk": "~5.3.0",
"clean-webpack-plugin": "~4.0.0",
"css-loader": "~7.1.0",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-only-warn": "~1.1.0",
"eslint-plugin-react": "~7.36.0",
"eslint-plugin-react-hooks": "~4.6.0",
"fork-ts-checker-webpack-plugin": "~6.5.2",
"fs-extra": "~11.2.0",
"html-webpack-plugin": "~5.6.0",
"node-fetch": "~3.3.2",
"postcss-loader": "~8.1.0",
"postcss-preset-env": "~9.3.0",
"style-loader": "~4.0.0",
"terser-webpack-plugin": "~5.3.10",
"ts-loader": "~9.5.1",
"url-loader": "~4.1.1",
"webpack": "~5.94.0",
"webpack-dev-server": "~5.1.0"
},
"devDependencies": {
"@types/node": "~18.19.17",
"@vertigis/web": "^5.31.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"cross-env": "7.0.3",
"execa": "8.0.1",
"lint-staged": "~15.2.10",
"p-retry": "6.2.0",
"playwright-chromium": "1.41.2",
"prettier": "3.2.5",
"semantic-release": "23.0.6",
"simple-git-hooks": "2.9.0",
"typescript": "5.3.3"
},
"overrides": {
"send": "0.19.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"overridesComments": {
"send": "Remove this when webpack-dev-server can be upgraded to not use a vulnerable version.",
"xlsx": "New versions are no longer published to npm."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,json,ts,tsx,md,xml}": "prettier --write"
}
}