flamegrill/package.json

40 строки
1.0 KiB
JSON

{
"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"
]
}
}