-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 863 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 863 Bytes
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
{
"name": "development-monorepo",
"private": true,
"scripts": {
"updateSubmodules": "git submodule init && git submodule update && git submodule status",
"b:common": "yarn tsc --project ./map-share-common",
"d:common": "yarn b:common --watch",
"d:frontend": "yarn workspace map-share-frontend dev",
"d:generator": "yarn workspace azgaars-map-generator start",
"d:service": "yarn workspace map-share-service dev",
"dev": "node ./scripts/dev.js",
"commit": "npx gitmoji -c"
},
"workspaces": [
"map-share-frontend",
"map-share-service",
"azgaars-map-generator"
],
"devDependencies": {
"concurrently": "4.1.0",
"cross-env": "5.2.0",
"tslint": "5.11.0",
"tslint-config-prettier": "1.17.0",
"tslint-microsoft-contrib": "5.2.1",
"tslint-sonarts": "1.8.0",
"typescript": "3.1.6"
}
}