forked from flybywiresim/aircraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 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
94
95
96
{
"name": "a32nx",
"version": "0.7.0-dev",
"scripts": {
"lint": "eslint --cache **/*.{js,mjs,jsx,ts,tsx}",
"lint-fix": "npm run lint -- --fix",
"test": "jest",
"prettier": "prettier --write **/*.json **/*.yml src/instruments/**/*.css",
"serve:efb": "cd src/instruments/src/EFB/ && rollup -wc ./rollup.development.config.js",
"build:fbw": "cd src/fbw && ./build.sh",
"build:fadec": "cd src/fadec && ./build.sh",
"build:failures": "rollup -c src/failures/rollup.config.js"
},
"lint-staged": {
"*.{js,mjs,jsx}": "eslint --cache --fix",
"*.{json,yml,css,scss}": "prettier --write"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "~7.12.1",
"@babel/plugin-transform-runtime": "~7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/preset-typescript": "~7.12.7",
"@flybywiresim/eslint-config": "~0.1.0",
"@flybywiresim/fragmenter": "^0.5.1",
"@flybywiresim/igniter": "^1.2.0",
"@flybywiresim/rnp": "^2.1.0",
"@flybywiresim/rollup-plugin-msfs": "~0.3.0",
"@navigraph/pkce": "^1.0.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-image": "~2.0.6",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-sucrase": "^3.1.0",
"@rollup/plugin-typescript": "~8.0.0",
"@types/jest": "^26.0.24",
"@types/react": "~17.0.0",
"@types/react-dom": "~17.0.0",
"@types/react-router-dom": "~5.1.6",
"@typescript-eslint/eslint-plugin": "~4.14.2",
"@typescript-eslint/parser": "~4.14.2",
"babel-plugin-module-resolver": "^4.1.0",
"dotenv": "^8.2.0",
"eslint": "7.21.0",
"eslint-plugin-jest": "^24.4.0",
"file-loader": "^6.2.0",
"jest": "^27.0.6",
"jsdom": "^16.4.0",
"lint-staged": "10.4.0",
"postcss": "^8.3.5",
"prettier": "2.1.2",
"redux-devtools-extension": "^2.13.8",
"rollup": "^2.32.0",
"rollup-plugin-copy": "~3.3.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-livereload": "~2.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-serve": "~1.1.0",
"rollup-plugin-typescript-paths": "^1.3.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"ts-jest": "^27.0.4",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.12.2",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
},
"dependencies": {
"@flybywiresim/api-client": "^0.13.0",
"@flybywiresim/react-components": "^0.3.1",
"@flybywiresim/tailwind-config": "^0.5.0",
"@tabler/icons": "^1.41.2",
"aewx-metar-parser": "~0.10.1",
"byte-data": "^19.0.1",
"classnames": "^2.2.6",
"immer": "^9.0.3",
"lodash": "^4.17.20",
"qrcode.react": "^1.0.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-leaflet": "~3.0.5",
"react-redux": "^7.2.2",
"react-router": "~5.2.0",
"react-router-dom": "~5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"rollup-plugin-scss": "^2.6.1",
"sass": "~1.30.0",
"tailwindcss": "^2.2.2",
"type-to-reducer": "^1.2.0"
}
}