Files
backstage/package.json
T

37 lines
1.0 KiB
JSON

{
"name": "root",
"private": true,
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "yarn build && yarn workspace @spotify-backstage/app start",
"build": "lerna run build",
"test": "cross-env CI=true lerna run test -- --coverage",
"create-plugin": "backstage-cli create-plugin",
"release": "if [ \"$(git symbolic-ref --short HEAD)\" = master ]; then echo \"don't try to release master\"; exit 1; else lerna version --no-push; fi",
"lint": "lerna run lint",
"storybook": "yarn workspace @spotify-backstage/core storybook",
"build-storybook": "yarn workspace @spotify-backstage/core build-storybook"
},
"workspaces": {
"packages": [
"packages/*",
"plugins/*"
]
},
"version": "1.0.0",
"devDependencies": {
"cross-env": "^7.0.0",
"eslint-plugin-notice": "^0.8.9",
"lerna": "^3.20.2",
"prettier": "^1.19.1",
"typescript": "^3.7.5",
"zombie": "^6.1.4"
},
"dependencies": {
"@types/classnames": "^2.2.9",
"moment": "^2.24.0"
}
}