54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"name": "example-backend",
|
|
"version": "0.1.1-alpha.6",
|
|
"main": "dist",
|
|
"types": "src/index.ts",
|
|
"private": true,
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "backstage-cli watch-deps --build -- tsc-watch --onFirstSuccess \\\"nodemon -r esm\\\"",
|
|
"lint": "backstage-cli lint",
|
|
"test": "backstage-cli test",
|
|
"clean": "backstage-cli clean",
|
|
"migrate:create": "knex migrate:make -x ts"
|
|
},
|
|
"dependencies": {
|
|
"@backstage/backend-common": "^0.1.1-alpha.6",
|
|
"@backstage/catalog-model": "^0.1.1-alpha.6",
|
|
"@backstage/plugin-auth-backend": "^0.1.1-alpha.6",
|
|
"@backstage/plugin-catalog-backend": "^0.1.1-alpha.6",
|
|
"@backstage/plugin-identity-backend": "^0.1.1-alpha.6",
|
|
"@backstage/plugin-scaffolder-backend": "^0.1.1-alpha.6",
|
|
"@backstage/plugin-sentry-backend": "^0.1.1-alpha.6",
|
|
"compression": "^1.7.4",
|
|
"cors": "^2.8.5",
|
|
"esm": "^3.2.25",
|
|
"express": "^4.17.1",
|
|
"helmet": "^3.22.0",
|
|
"knex": "^0.21.1",
|
|
"sqlite3": "^4.2.0",
|
|
"winston": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@backstage/cli": "^0.1.1-alpha.6",
|
|
"@types/compression": "^1.7.0",
|
|
"@types/cors": "^2.8.6",
|
|
"@types/express": "^4.17.6",
|
|
"@types/express-serve-static-core": "^4.17.5",
|
|
"@types/helmet": "^0.0.47",
|
|
"jest": "^26.0.1",
|
|
"tsc-watch": "^4.2.3",
|
|
"typescript": "^3.9.2"
|
|
},
|
|
"nodemonConfig": {
|
|
"watch": [
|
|
"./dist",
|
|
"node_modules/@backstage*"
|
|
]
|
|
}
|
|
}
|