forked from saltysimulations/salty-747
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.68 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
{
"name": "salty-747",
"version": "0.6.0",
"description": "An open-source modification for the default MSFS 747-8, aiming to improve the lacking features and realism of the default aircraft.",
"scripts": {
"build:layout": "node scripts/build.js",
"build:instruments": "rollup -c src/instruments/rollup.config.js",
"build:pfd": "rollup -c src/instruments/src/PFD/rollup.config.js",
"build:fpm": "cd src/modules && tsc --module commonjs && rollup -c rollup.config.ts",
"build:models": "node src/models/build.js",
"build:msfs-sdk": "cd msfs-avionics-mirror/src/sdk && npm i && npm run build",
"build": "npm run build:msfs-sdk && npm run build:pfd && npm run build:instruments && npm run build:fpm && npm run build:models && npm run build:layout",
"fragment": "node scripts/fragment.js",
"dev": "rollup -wc src/instruments/rollup.config.js",
"dev-pfd": "rollup -wc src/instruments/src/PFD/rollup.config.js"
},
"author": "Salty Simulations",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@flybywiresim/fragmenter": "^0.7.0",
"@flybywiresim/rollup-plugin-msfs": "^0.3.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/react": "^17.0.26",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"msfssdk": "file:msfs-avionics-mirror/src/sdk/build",
"rollup": "^2.75.6",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-import-css": "^3.0.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-ts-paths-resolve": "^1.7.1",
"rollup-plugin-typescript2": "^0.31.2",
"tailwindcss": "^2.2.16",
"typescript": "^4.1.3"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-msfs": "^0.2.0",
"sass": "^1.42.1",
"byte-data": "^19.0.1"
}
}