notebook/package.json
2020-12-07 17:31:31 +01:00

58 lines
1.6 KiB
JSON

{
"private": true,
"homepage": "https://github.com/jtpio/jupyterlab-classic",
"repository": {
"type": "git",
"url": "https://github.com/jtpio/jupyterlab-classic"
},
"bugs": {
"url": "https://github.com/jtpio/jupyterlab-classic/issues"
},
"license": "BSD-3-Clause",
"author": "Jeremy Tuloup",
"workspaces": {
"packages": [
"builder",
"packages/*"
]
},
"scripts": {
"build": "lerna run build",
"build:prod": "lerna run build:prod",
"build:test": "lerna run build:test",
"clean": "lerna run clean",
"install": "lerna bootstrap",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"publish": "yarn run clean && yarn run build && lerna publish",
"test": "lerna run test"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.10.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"husky": "^3",
"jest": "^26.4.2",
"jest-junit": "^11.1.0",
"jest-raw-loader": "^1.0.1",
"jest-summary-reporter": "^0.0.2",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.0",
"rimraf": "^3.0.2",
"shell-quote": "^1.7.2",
"typescript": "~4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}