-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 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
{
"name": "modus-monorepo",
"description": "Monorepo for all OATS Center Modus-related code and utilities",
"repository": "git@github.com/oats-center/modus",
"author": "Aaron Ault <aultac@gmail.com>",
"license": "Apache-2.0",
"version": "1.0.4",
"packageManager": "yarn@4.1.1",
"scripts": {
"build": "echo '--------> @modusjs/industry' && yarn workspace @modusjs/industry build && echo '--------> @modusjs/examples' && yarn workspace @modusjs/examples build > /dev/null && echo '--------> @modusjs/units' && yarn workspace @modusjs/units build && echo '--------> @modusjs/convert' && yarn workspace @modusjs/convert build && echo '--------> app' && yarn workspace app build"
},
"workspaces": [
"bundle",
"convert",
"cli",
"examples",
"app",
"units",
"industry",
"bigquery"
],
"devDependencies": {
"@types/node": "16.11.68",
"@types/prettier": "^2.7.1",
"@yarnpkg/sdks": "^3.0.0-rc.26",
"prettier": "^2.7.1"
},
"dependencies": {
"@oada/formats": "^3.5.3",
"@oada/types": "^3.5.3",
"typescript": "^5.4.3"
}
}