blob: 99a3f352a02333e0db81ef2569a7bcfaeb32b771 [file]
{
"name": "zeppelin",
"version": "0.0.0",
"scripts": {
"postinstall": "npm run build:projects && npm run build:tslint-rules",
"ng": "./node_modules/.bin/ng",
"start": "ng serve --proxy-config proxy.conf.js --extra-webpack-config webpack.partial.js",
"build": "ng build --prod --extra-webpack-config webpack.partial.js",
"build:tslint-rules": "tsc tslint-rules/*.ts --types node",
"build:projects": "npm run build-project:sdk && npm run build-project:vis && npm run build-project:helium",
"build-helium-vis-example": " ng build --project helium-vis-example",
"build-project:sdk": " ng build --project zeppelin-sdk",
"build-project:vis": " ng build --project zeppelin-visualization",
"build-project:helium": "ng build --project zeppelin-helium",
"test": "ng test",
"lint": "ng lint && tslint tslint-rules/*.ts && prettier --check \"**/*.{ts,js,json,css,html}\"",
"lint:fix": "ng lint --fix && tslint --fix tslint-rules/*.ts && prettier --write \"**/*.{ts,js,json,css,html}\"",
"e2e": "ng e2e"
},
"engines": {
"node": "<17.0.0"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.1.13",
"@angular/cdk": "~9.2.4",
"@angular/common": "~9.1.13",
"@angular/compiler": "~9.1.13",
"@angular/core": "~9.1.13",
"@angular/forms": "~9.1.13",
"@angular/platform-browser": "~9.1.13",
"@angular/platform-browser-dynamic": "~9.1.13",
"@angular/router": "~9.1.13",
"@antv/data-set": "^0.10.2",
"@antv/g2": "^3.5.4",
"ansi_up": "^4.0.4",
"core-js": "^2.5.4",
"date-fns": "^2.30.0",
"diff-match-patch": "^1.0.4",
"github-markdown-css": "^3.0.1",
"highlight.js": "^9.15.8",
"lodash": "^4.17.21",
"mathjax": "2.7.5",
"monaco-editor": "0.30.1",
"ng-zorro-antd": "^9.3.0",
"parse5": "^5.1.1",
"rxjs": "~6.5.3",
"systemjs": "^5.0.0",
"tslib": "^1.9.0",
"xlsx": "^0.14.3",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.901.15",
"@angular-devkit/build-ng-packagr": "~0.901.15",
"@angular/cli": "~9.1.15",
"@angular/compiler-cli": "~9.1.13",
"@angular/language-service": "~9.1.13",
"@types/diff-match-patch": "^1.0.36",
"@types/highlight.js": "^9.12.3",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/lodash": "4.14.144",
"@types/mathjax": "^0.0.35",
"@types/node": "~12.19.16",
"@types/parse5": "^5.0.2",
"@types/webpack-env": "^1.18.8",
"codelyzer": "^5.0.0",
"dotenv": "^8.0.0",
"https-proxy-agent": "^2.2.1",
"husky": "^3.0.9",
"jasmine-core": "~3.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"lint-staged": "^8.1.6",
"monaco-editor-webpack-plugin": "6.0.0",
"ng-packagr": "^9.1.5",
"ngx-build-plus": "^9.0.6",
"nz-tslint-rules": "^0.800.2",
"prettier": "^1.17.0",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tsickle": "0.38.1",
"tslint": "~5.15.0",
"typescript": "3.8.3"
},
"lint-staged": {
"**/*.ts": [
"tslint --fix",
"./node_modules/.bin/prettier --write",
"git add"
],
"**/*.{js,json,css,html}": [
"./node_modules/.bin/prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}