-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.18 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
{
"name": "3dp4me",
"description": "Monorepo that contains the entire codebase for the 3DP4ME dashboard",
"version": "1.0.0",
"bugs": "https://github.com/hack4impact-uiuc/3dp4me/issues",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"ajv": "^8.17.1",
"rimraf": "^5.0.5",
"syncpack": "^12.3.0",
"turbo": "^1.11.3"
},
"homepage": "https://github.com/hack4impact-uiuc/3dp4me#readme",
"packageManager": "[email protected]",
"repository": "hack4impact-uiuc/3dp4me.git",
"scripts": {
"build": "turbo build",
"build:docker": "docker build --build-arg PROJECT_NAME=hearing --tag '3dp4me' .",
"clean": "turbo clean && rimraf .turbo prod-build node_modules",
"lint": "turbo run lint && pnpm eslint --ext .json --fix . && pnpm run sync",
"lint:check": "turbo run lint && pnpm eslint --ext .json .",
"preinstall": "npx only-allow pnpm",
"publish:production": "git branch -D production ; git push origin --delete production ; git checkout -b production && git push -u origin production && git switch -",
"sync": "pnpm syncpack fix-mismatches && pnpm syncpack format",
"test": "turbo test"
},
"workspaces": [
"packages/*",
"apps/*"
]
}