forked from flybywiresim/aircraft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.14 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
{
"name": "a32nx",
"version": "0.6.0",
"scripts": {
"lint": "eslint --cache **/*.{js,mjs,jsx}",
"lint-fix": "npm run lint -- --fix",
"prettier": "prettier --write **/*.json **/*.yml src/instruments/**/*.css",
"build:instruments": "rollup -c src/instruments/rollup.config.js",
"postinstall": "husky install"
},
"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",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@rollup/plugin-typescript": "~8.0.0",
"@types/react": "~17.0.0",
"@types/react-dom": "~17.0.0",
"@types/react-router-dom": "~5.1.6",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^5.0.1",
"@flybywiresim/rnp": "^2.1.0",
"eslint": "7.10.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"husky": "^5.0.4",
"jsdom": "^16.4.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"rollup": "^2.32.0",
"rollup-plugin-css-only": "^2.1.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"typescript": "~4.1.2",
"webpack": "^5.12.2",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
},
"dependencies": {
"byte-data": "^19.0.1",
"@flybywiresim/api-client": "~0.7.0",
"@flybywiresim/map": "~0.3.4",
"@tabler/icons": "^1.38.0",
"aewx-metar-parser": "~0.10.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router": "~5.2.0",
"react-router-dom": "~5.2.0",
"react-leaflet": "~3.0.5",
"rollup-plugin-scss": "^2.6.1",
"sass": "~1.30.0"
}
}