forked from spatialillusions/milgraphics
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "milgraphics",
"version": "1.0.5",
"description": "MilGraphics is a library for drawing military graphics",
"main": "dist/milgraphics.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"scripts": {
"build": "webpack --config webpack.production.js --progress --profile",
"start": "webpack serve --config webpack.development.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/spatialillusions/milgraphics"
},
"author": "Måns Beckman (http://www.spatialillusions.com), Ondřej Podolský",
"license": "MIT",
"bugs": {
"url": "https://github.com/spatialillusions/milgraphics/issues"
},
"homepage": "https://github.com/spatialillusions/milgraphics",
"devDependencies": {
"@babel/cli": "^7.24.1",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-destructuring": "^7.24.1",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"babel-loader": "^9.1.3",
"eslint": "^8.56.0",
"html-webpack-plugin": "^5.6.0",
"milsymbol": "2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-loader": "^5.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"peerDependencies": {
"@types/react": "^18.2.79",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"file-loader": "^6.2.0",
"geodesy": "^2.4.0",
"ol": "^9.1.0",
"requirejs": "^2.3.6"
}
}