-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "flamegrill-monorepo",
"version": "0.0.1",
"private": true,
"repository": "https://github.com/microsoft/flamegrill.git",
"license": "MIT",
"author": "Jason Gore <jagore@microsoft.com>",
"main": "index.js",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build:all": "lerna run build --stream",
"build:docs": "yarn workspace flamegrill-website build",
"build": "yarn workspace flamegrill build",
"build:flamegrill": "yarn workspace flamegrill build",
"change": "beachball change",
"checkchange": "beachball check",
"publish:beachball": "beachball publish",
"start": "yarn workspace flamegrill start",
"start:docs": "yarn workspace flamegrill-website start",
"test": "yarn workspace flamegrill test"
},
"devDependencies": {
"@types/node": "14.18.33",
"beachball": "2.31.8",
"lerna": "5.6.2",
"typescript": "4.3.5"
},
"beachball": {
"ignorePatterns": [
"**/__tests__/**",
"**/fixtures/**",
"**/jest.config.js"
]
}
}