This repository was archived by the owner on Jun 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.33 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
{
"name": "@flybywiresim/map",
"version": "0.5.2",
"description": "FlyByWire Simulations live map",
"author": "FlyByWire Simulations",
"private": false,
"license": "MIT",
"keywords": [
"fs2020",
"fbw"
],
"homepage": "https://github.com/flybywiresim/map#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/flybywiresim/map.git"
},
"bugs": {
"url": "https://github.com/flybywiresim/map/issues"
},
"files": [
"build"
],
"main": "build/index.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.{js,jsx,ts,tsx}",
"lint:fix": "eslint src/**/*.{js,jsx,ts,tsx} --fix",
"storybook": "start-storybook -p 6006",
"storybook:export": "build-storybook",
"generate": "node ./util/create-component",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@flybywiresim/api-client": "^0.8.0",
"@marfle/react-leaflet-nmscale": "^2.0.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-node-resolve": "^11.1.1",
"@storybook/react": "^6.1.16",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/leaflet": "^1.5.19",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"eslint": "^7.18.0",
"eslint-plugin-react": "^7.22.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"leaflet": "^1.7.1",
"leaflet.polylinemeasure": "git+https://github.com/ppete2/Leaflet.PolylineMeasure.git",
"node-sass": "^5.0.0",
"postcss": "^8.2.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-leaflet": "^3.1.0",
"rollup": "^2.38.4",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"sass-loader": "^10.1.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
}
}