-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 849 Bytes
/
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
{
"name": "conveyor",
"version": "0.12.0",
"author": "Alanimdeo <alan@imdeo.kr>",
"private": true,
"license": "MIT",
"scripts": {
"backend": "yarn workspace @conveyor/backend",
"frontend": "yarn workspace @conveyor/frontend",
"types": "yarn workspace @conveyor/types",
"predev": "yarn",
"dev": "run-p -l '{frontend,backend,types} dev'",
"prebuild": "rm -rf dist && yarn",
"build": "yarn types build; run-p -l '{frontend,backend} build'",
"postbuild": "node scripts/postBuild.js",
"update-deps": "ncu -u && run-p -l '{frontend,backend,types} update-deps' && yarn",
"precommit": "node scripts/preCommit.js"
},
"workspaces": [
"types",
"backend",
"frontend"
],
"devDependencies": {
"npm-check-updates": "^17.1.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.6.2"
}
}