-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
96 lines (96 loc) · 2.96 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
95
96
{
"name": "@flybywiresim/react-components",
"version": "0.3.2",
"description": "FlyByWire Simulations React components library",
"author": "FlyByWire Simulations",
"private": false,
"license": "MIT",
"keywords": [
"fs2020",
"fbw",
"react",
"components",
"library"
],
"homepage": "https://github.com/flybywiresim/react-components#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/flybywiresim/react-components.git"
},
"bugs": {
"url": "https://github.com/flybywiresim/react-components/issues"
},
"files": [
"build"
],
"main": "build/index.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"scripts": {
"build:lib": "rollup -c",
"build:extract": "node extract-selectors.js",
"build": "npm run build:lib && npm run build:extract",
"build:watch": "rollup -cw",
"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": {
"@tabler/icons": ">=1.41.2",
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@flybywiresim/api-client": "^0.9.0",
"@flybywiresim/eslint-config": "~0.1.0",
"@flybywiresim/tailwind-config": "~0.3.0",
"@marfle/react-leaflet-nmscale": "^2.0.0",
"@react-leaflet/core": "~1.0.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-image": "^2.0.6",
"@rollup/plugin-node-resolve": "^11.1.1",
"@storybook/react": "^6.1.16",
"@tabler/icons": "^1.41.2",
"@tailwindcss/postcss7-compat": "~2.0.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.20",
"@types/leaflet": "^1.5.19",
"@types/leaflet.polylinemeasure": "^1.0.0",
"@types/react": "^17.0.1",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"autoprefixer": "~9.8.6",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"cssnano": "^4.1.10",
"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": "^3.0.0",
"list-selectors": "^2.0.0",
"node-sass": "^5.0.0",
"postcss": "^7.0.35",
"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",
"tailwindcss": "npm:@tailwindcss/[email protected]",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
}
}