-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.51 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
{
"name": "ftc-maintenance-sripts",
"repository": "https://github.com/technototes/PowerPlay2022.git",
"author": "Kevin Frei <[email protected]>",
"license": "CC0-1.0",
"scripts": {
"- // a": "These are all for building 'stuff':",
"fast": "yarn gradle :Twenty403:assembleDebug :Swerveteen750:assembleDebug",
"fast16": "yarn gradle :Sixteen750:assembleDebug",
"fast20": "yarn gradle :Twenty403:assembleDebug",
"fastsw": "yarn gradle :Swerveteen750:assembleDebug",
"build": "yarn gradle :Swerveteen750:build :Twenty403:build",
"build16": "yarn gradle :Sixteen750:build",
"build20": "yarn gradle :Twenty403:build",
"buildsw": "yarn gradle :Swerveteen750:build",
"full": "yarn gradle build",
"- // b": "This one is for moving everyone's branches forward as main moves:",
"ffwd": "node scripts/fastforward.js",
"- // c": "These scripts are for formatting code/scripts/markdown stuff:",
"format": "prettier --write Sixteen750/sc/** Twenty403/src/** Swerveteen750/src/** MeepMeepTesting/src/** ForTeaching/src/** *.json scripts/*.js",
"format16": "prettier --write Sixteen750/src/**",
"format20": "prettier --write Twenty403/src/**",
"formatsw": "prettier --write Swerveteen750/src/**",
"formatjs": "prettier --write *.json scripts/*.js",
"formatft": "prettier --write ForTeaching/src/**",
"formatall": "yarn format && yarn formatjs",
"- // d": "This will toggle using TechnoLib locally or from Maven",
"libflip": "node scripts/flip.js lib",
"- // e": "Disable/enable 'all' bots & subbuilds",
"botflip": "node scripts/flip.js bot",
"- // f": "Stuff for connecting/disconnecting from the bot",
"connect": "yarn adb connect 192.168.43.1:5555",
"disconnect": "yarn adb disconnect 192.168.43.1:5555",
"discall": "yarn adb disconnect",
"- // g": "Open the FTC Dashboard!",
"dash": "yarn open https://192.168.49.1:8080/dash",
"- // h": "platform-specific commands",
"gradle": "run-script-os",
"gradle:win32": ".\\gradlew",
"gradle:default": "./gradlew",
"adb": "run-script-os",
"adb:win32": "%LOCALAPPDATA%\\Android\\sdk\\platform-tools\\adb",
"adb:macos": "~/Library/Android/sdk/platform-tools/adb",
"adb:linux": "~/Android/Sdk/platform-tools/adb",
"open": "run-script-os",
"open:win32": "start \"\"",
"open:macos": "open",
"open:linux": "xdg-open"
},
"devDependencies": {
"prettier": "^2.8.3",
"prettier-plugin-java": "^2.0.0",
"run-script-os": "^1.1.6",
"simple-git": "^3.16.0"
}
}