-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1019 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1019 Bytes
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
{
"name": "gauge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cross-env DEBUG=false npx rollup -c",
"typecheck": "tsc --noEmit",
"dev": "cross-env DEBUG=false npx rollup -c && cross-env DEBUG=true npx rollup -cw",
"lint": "eslint . --ext .ts,.tsx"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@microsoft/msfs-sdk": "^0.6.0",
"@microsoft/msfs-types": "^1.14.6",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"dotenv-safe": "^9.1.0",
"esbuild": "^0.19.5",
"postcss": "^8.4.47",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup-plugin-import-css": "^3.3.5",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.4.14"
},
"dependencies": {
"@navigraph/msfs-navigation-data-interface": "*",
"navigraph": "1.2.35"
}
}