-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.51 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
{
"private": true,
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/commander": "^2.9.2",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.31",
"chai": "^4.1.2",
"concurrently": "^3.6.1",
"lerna": "^3.0.0-rc.0",
"mocha": "5.2.0",
"rimraf": "^2.6.2",
"source-map-support": "^0.4.18",
"ts-node": "7.0.1",
"tslint": "^5.11.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.0.1"
},
"scripts": {
"prepare": "lerna run clean && yarn build && yarn bundle",
"clean": "lerna run clean",
"build": "concurrently -n compile,lint -c blue,green \"yarn compile\" \"yarn lint\"",
"compile": "tsc -b",
"watch": "tsc -b --watch --verbose",
"lint": "lerna run lint",
"test": "lerna run test",
"bundle": "lerna run --scope example bundle",
"watch:bundle": "yarn bundle -- -- --watch",
"start": "lerna run --scope example start",
"publish": "yarn && yarn test && yarn publish:latest",
"publish:latest": "lerna publish --registry=https://registry.npmjs.org/ --exact",
"publish:next": "lerna publish --registry=https://registry.npmjs.org/ --exact --canary=next --npm-tag=next --force-publish --skip-git --yes",
"publish:dev": "lerna publish --registry=https://registry.npmjs.org/ --exact --canary=dev --npm-tag=dev --force-publish --skip-git --yes"
},
"workspaces": [
"server",
"example"
]
}