@slsplus/ui
Version:
UI Tool for Serverless Plus CLI
114 lines (113 loc) • 3.45 kB
JSON
{
"name": "@slsplus/ui",
"version": "0.0.1-beta-6",
"description": "UI Tool for Serverless Plus CLI",
"main": "./dist/server.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"bootstrap": "ts-node ./scripts/bootstrap.ts",
"start:server": "NODE_ENV=development ts-node src/start.ts",
"start:client": "cd client && npm run start",
"start": "NODE_ENV=production node dist/start.js",
"build": "ts-node ./scripts/build.ts",
"test": "jest",
"compile": "tsc",
"format": "npm run lint && npm run prettier",
"commitlint": "commitlint -f HEAD@{15}",
"lint": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx .",
"prettier": "prettier --check '**/*.{css,html,js,ts,json,md,yaml,yml}'",
"prettier:fix": "prettier --write '**/*.{css,html,js,ts,json,md,yaml,yml}'",
"release": "semantic-release",
"release-local": "node -r dotenv/config node_modules/semantic-release/bin/semantic-release --no-ci --dry-run",
"check-dependencies": "npx npm-check --skip-unused --update"
},
"engines": {
"node": ">=10.18"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run lint:fix && npm run prettier:fix"
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"npm run lint:fix",
"git add ."
],
"**/*.{css,html,js,ts,json,md,yaml,yml}": [
"npm run prettier:fix",
"git add ."
]
},
"keywords": [
"ui",
"slsplus",
"serverless-plus",
"serverless"
],
"author": "yugasun",
"license": "MIT",
"dependencies": {
"@slsplus/migrate": "^0.0.1-beta-7",
"@tencent-sdk/capi": "^1.1.6",
"@types/cors": "^2.8.8",
"@types/js-yaml": "^3.12.5",
"@ygkit/object": "^0.0.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"hotkeys-js": "^3.8.1",
"js-yaml": "^3.14.0",
"open": "^7.3.0",
"p-retry": "^4.2.0",
"portfinder": "^1.0.28",
"tslib": "^2.0.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.13",
"@types/node": "^14.11.2",
"@types/shelljs": "^0.8.8",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"dotenv": "^8.2.0",
"eslint": "7.11.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.21.2",
"husky": "^4.2.3",
"jest": "^26.4.2",
"lint-staged": "^10.0.8",
"ora": "^5.1.0",
"prettier": "^1.19.1",
"semantic-release": "^17.0.4",
"shelljs": "^0.8.4",
"ts-jest": "^26.3.0",
"typescript": "^4.0.3",
"typescript-json-schema": "^0.43.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-plus/ui.git"
},
"bugs": {
"url": "https://github.com/serverless-plus/ui/issues"
},
"homepage": "https://github.com/serverless-plus/ui#readme"
}