-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 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
34
35
36
37
38
39
40
41
{
"name": "syncable-packages",
"private": true,
"scripts": {
"link-global": "yarn workspace @syncable/core link && yarn workspace @syncable/server link && yarn workspace @syncable/client link",
"unlink-global": "yarn workspace @syncable/core unlink && yarn workspace @syncable/server unlink && yarn workspace @syncable/client unlink",
"lerna:publish": "lerna publish prerelease --npm-tag latest --registry=https://registry.npmjs.org",
"build": "tsc --build tsconfig.build.json",
"lint:test": "tslint --project test",
"lint-prettier": "prettier --check \"**/*.{ts,tsx,js,jsx,json,yml,md}\"",
"lint": "yarn lint-prettier && yarn lint:test && yarn workspace @syncable/core lint && yarn workspace @syncable/server lint && yarn workspace @syncable/client lint",
"test": "jest --silent"
},
"devDependencies": {
"@magicspace/configs": "0.1.49",
"@types/jest": "^24.0.9",
"@types/lolex": "^2.1.3",
"@types/node": "^12.7.4",
"biu": "^0.2.19",
"jest": "^24.3.1",
"lerna": "^3.11.0",
"lodash": "^4.17.14",
"lolex": "^3.0.0",
"mobx": "^5.8.0",
"prettier": "^1.19.1",
"rxjs": "^6.5.2",
"ts-jest": "^24.0.0",
"tslib": "^1.9.3",
"tslint": "^5.12.1",
"tslint-language-service": "^0.9.9",
"typescript": "^3.7.2",
"villa": "^0.3.1"
},
"workspaces": {
"packages": [
"core",
"server",
"client"
]
}
}