-
-
Notifications
You must be signed in to change notification settings - Fork 917
/
package.json
93 lines (93 loc) · 2.72 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
{
"name": "betaflight-configurator",
"productName": "Betaflight",
"displayName": "Betaflight - Configuration and management tool",
"description": "Crossplatform configuration and management tool for the Betaflight flight control firmware.",
"version": "11.0.0",
"main": "index.html",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"review": "vite build && vite preview",
"pretest": "yarn run lint",
"test": "vitest",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --fix src",
"storybook": "start-storybook -p 6006",
"android:dev": "node capacitor.config.generator.mjs --dev && npx cap run android",
"android:open": "vite build && node capacitor.config.generator.mjs && npx cap open android",
"android:run": "vite build && node capacitor.config.generator.mjs && npx cap run android"
},
"repository": {
"type": "git",
"url": "github.com/betaflight/betaflight-configurator"
},
"author": "The Betaflight open source project.",
"license": "GPL-3.0",
"engines": {
"node": "20.x"
},
"dependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@fortawesome/fontawesome-free": "^6.5.2",
"@panter/vue-i18next": "^0.15.2",
"@vitejs/plugin-vue2": "^2.3.1",
"crypto-es": "^2.1.0",
"d3": "^7.9.0",
"djv": "^2.1.4",
"dompurify": "^2.5.5",
"i18next": "^19.9.2",
"i18next-xhr-backend": "^3.2.2",
"inflection": "^1.13.4",
"jbox": "^1.3.3",
"jquery": "^3.7.1",
"jquery-textcomplete": "^1.8.5",
"jquery-touchswipe": "^1.6.19",
"jquery-ui": "^1.13.3",
"jsdom": "^21.1.2",
"lodash.debounce": "^4.0.8",
"marked": "^4.3.0",
"multicast-dns": "^7.2.5",
"multiple-select": "^1.6.0",
"ol": "^8.2.0",
"select2": "^4.0.13",
"semver-min": "^0.7.2",
"short-unique-id": "^4.4.4",
"switchery-latest": "^0.8.2",
"three": "~0.97.0",
"vite-plugin-pwa": "^0.17.5",
"vue": "^2.7.16"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@capacitor/cli": "^6.0.0",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/vue": "^6.5.16",
"babel-loader": "^8.3.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^7.20.0",
"husky": "^4.3.8",
"inquirer": "^9.3.1",
"less": "^4.2.0",
"rollup-plugin-copy": "^3.5.0",
"run-script-os": "^1.1.6",
"vite": "^4.5.3",
"vitest": "^0.27.3",
"vue-loader": "^15.11.1",
"vue-template-compiler": "^2.7.16",
"yarn": "^1.22.22"
},
"resolutions": {
"jquery": "3.6.3",
"libxmljs2": "0.32.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}