-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 1.03 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
{
"name": "hd-mcu",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"install": "npm run install:mcu && nom run install:app",
"install:mcu": "npm --prefix pico-hd-mcu i",
"install:app": "npm --prefix mobile-app i",
"build": "npm run typegen && npm run build:mcu && npm run build:app",
"build:min": "npm run typegen && npm run build:mcu:min && npm run build:app",
"build:app": "npm --prefix mobile-app run build",
"start:app": "npm --prefix mobile-app run start",
"bundle:app": "npm --prefix mobile-app run bundle",
"build:mcu": "npm --prefix pico-hd-mcu run build",
"build:mcu:min": "npm --prefix pico-hd-mcu run build:min",
"shell:mcu": "npm --prefix pico-hd-mcu run shell",
"flash:mcu": "npm --prefix pico-hd-mcu run flash",
"set-schema-version": "sh -c \"echo 'export const SchemaVersion = \\\"$(date +%Y-%m-%dT%H:%M:%S)\\\";' > ./ts-schema/schema.version.ts\"",
"typegen": "npm run set-schema-version && tsc ./ts-schema/*.ts"
}
}