-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
33 lines (33 loc) · 850 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
30
31
32
33
{
"private": true,
"name": "temme",
"description": "Temme monorepo",
"author": "Shi Feichao <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "yarn install-typings",
"install-typings": "node ./node_modules/vscode/bin/install",
"test": "lerna run --parallel test",
"build": "lerna run --parallel build",
"start:temme": "yarn workspace temme start",
"start:vscode-temme": "yarn workspace vscode-temme start",
"start:website": "yarn workspace website start"
},
"engines": {
"vscode": "^1.22.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.0",
"copyfiles": "^2.1.1",
"lerna": "^3.20.2",
"mixin-deep": "^2.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2"
},
"dependencies": {
"@types/invariant": "^2.2.31"
}
}