This repository has been archived by the owner on Jul 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 1.83 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
{
"private": true,
"name": "axon",
"version": "0.1.0",
"description": "An application for creating ML models",
"workspaces": [
"packages/*"
],
"scripts": {
"client": "yarn workspace client start",
"server": "yarn workspace server start",
"launch:dev": "yarn workspace launcher electron:dev",
"launch:dev:win": "yarn workspace launcher electron:dev:win",
"launch:build": "yarn workspace launcher electron:build",
"generate": "yarn workspace server generate && yarn workspace client generate",
"start": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"build": "concurrently --kill-others-on-fail \"yarn workspace client build\" \"yarn workspace server build\"",
"serve": "concurrently --kill-others-on-fail \"yarn workspace client serve\" \"yarn workspace server start\"",
"dev": "yarn generate && concurrently --kill-others-on-fail \"yarn workspace client dev\" \"yarn workspace server dev\"",
"format": "prettier --write .",
"test:format": "prettier --check .",
"test:lint": "yarn workspaces run test:lint",
"dockerdev": "docker build --build-arg AXON_VERSION=edge -t axon:local . && docker run -t -i -v /var/run/docker.sock:/var/run/docker.sock -v wpilib-axon-volume:/usr/src/app/packages/server/data -l axon=main -p 3000:3000 -p 4000:4000 axon:local",
"dockerdev:buildonly": "docker build --build-arg AXON_VERSION=edge -t wpilib/axon:0.0.1 .",
"dockerdev:runonly": "docker run -t -i -v /var/run/docker.sock:/var/run/docker.sock -v wpilib-axon-volume:/usr/src/app/packages/server/data -p 3000:3000 -p 4000:4000 axon:local"
},
"author": "WPILib <[email protected]>",
"email": "[email protected]",
"license": "BSD",
"devDependencies": {
"concurrently": "^5.2.0",
"prettier": "^2.0.5"
},
"resolutions": {
"fs-capacitor": "^6.2.0"
}
}