2019-07-30 01:26:17 +03:00
|
|
|
{
|
|
|
|
"name": "flamegrill-monorepo",
|
|
|
|
"version": "0.0.1",
|
2019-09-11 00:54:53 +03:00
|
|
|
"private": true,
|
2019-09-10 03:37:53 +03:00
|
|
|
"repository": "https://github.com/microsoft/flamegrill.git",
|
2019-07-30 01:26:17 +03:00
|
|
|
"license": "MIT",
|
2019-09-11 00:54:53 +03:00
|
|
|
"author": "Jason Gore <jagore@microsoft.com>",
|
|
|
|
"main": "index.js",
|
2019-07-30 01:26:17 +03:00
|
|
|
"workspaces": {
|
|
|
|
"packages": [
|
|
|
|
"packages/*"
|
|
|
|
]
|
2019-09-11 00:54:53 +03:00
|
|
|
},
|
|
|
|
"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",
|
2019-09-18 20:20:39 +03:00
|
|
|
"publish:beachball": "beachball publish",
|
2019-09-11 00:54:53 +03:00
|
|
|
"start": "yarn workspace flamegrill start",
|
|
|
|
"start:docs": "yarn workspace flamegrill-website start",
|
|
|
|
"test": "yarn workspace flamegrill test"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-15 01:32:20 +03:00
|
|
|
"@types/node": "14.18.33",
|
2023-02-15 02:43:19 +03:00
|
|
|
"beachball": "2.31.8",
|
2023-02-15 01:32:02 +03:00
|
|
|
"lerna": "5.6.2",
|
2022-09-09 05:24:41 +03:00
|
|
|
"typescript": "4.3.5"
|
2022-09-09 05:40:40 +03:00
|
|
|
},
|
|
|
|
"beachball": {
|
|
|
|
"ignorePatterns": [
|
|
|
|
"**/__tests__/**",
|
|
|
|
"**/fixtures/**",
|
|
|
|
"**/jest.config.js"
|
|
|
|
]
|
2019-07-30 01:26:17 +03:00
|
|
|
}
|
|
|
|
}
|