-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.41 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
94
{
"name": "@powsybl/network-viewer",
"version": "1.1.1",
"description": "TypeScript library to integrate PowSyBl network viewers in a JavaScript project.",
"author": "PowSyBl team",
"homepage": "https://www.powsybl.org/",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/powsybl/powsybl-network-viewer.git"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/powsybl-network-viewer.umd.cjs",
"module": "./dist/powsybl-network-viewer.js",
"exports": {
".": {
"import": "./dist/powsybl-network-viewer.js",
"require": "./dist/powsybl-network-viewer.umd.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"watch": "vite watch",
"build": "vite build",
"prepublishOnly": "$npm_execpath run build",
"test": "jest",
"test:coverage": "jest --coverage",
"start": "vite demo/ --config vite.config.ts --open",
"lint": "eslint . --ext js,mjs,jsx,ts,mts,tsx --max-warnings 0",
"licenses-check": "license-checker --summary --excludePrivatePackages --production --onlyAllow \"$( jq -r .onlyAllow[] license-checker-config.json | tr '\n' ';')\" --excludePackages \"$( jq -r .excludePackages[] license-checker-config.json | tr '\n' ';')\""
},
"dependencies": {
"@mapbox/mapbox-gl-draw": "^1.4.3",
"@svgdotjs/svg.js": "^3.2.0",
"@svgdotjs/svg.panzoom.js": "^2.1.2",
"@turf/boolean-point-in-polygon": "^6.5.0",
"cheap-ruler": "^3.0.2",
"deck.gl": "^8.9.35",
"geolib": "^3.3.4",
"mapbox-gl": "^3.2.0",
"maplibre-gl": "^4.1.2",
"react-map-gl": "^7.1.7"
},
"peerDependencies": {
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@mui/system": "^5.15.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.6.4"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@mui/system": "^5.15.14",
"@types/eslint": "^7.29.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/jest": "^29.5.12",
"@types/license-checker": "^25.0.6",
"@types/mapbox__mapbox-gl-draw": "^1.4.6",
"@types/mapbox-gl": "^3.1.0",
"@types/node": "^18.19.31",
"@types/react": "^18.2.75",
"@types/react-dom": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@vitejs/plugin-react": "^4.2.1",
"babel-jest": "^29.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"license-checker": "^25.0.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "5.1.6",
"vite": "^5.2.7",
"vite-plugin-dts": "^3.8.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.2.0"
}
}