-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 907 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": "@building-properties-manager/mono-repo",
"version": "1.0.0",
"description": " Data, models and clients for managing structured building properties - based on IFC, but highly simplified. Should convert nicely both ways though.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build --workspaces --if-present",
"start": "npm run start:cli",
"start:cli": "npm run start --workspace=clients/cli",
"clean": "npm run clean --workspaces --if-present"
},
"author": "Johan Svensson",
"license": "MIT",
"private": true,
"workspaces": [
"src",
"clients/cli"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.4"
}
}