-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
113 lines (112 loc) · 4.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "tis-console",
"version": "1.0.0",
"description": "tis-console",
"scripts": {
"build": "tsc -p ./src",
"build:watch": "tsc -p ./src/ -w",
"build:e2e": "tsc -p e2e/",
"ng:serve-aot": "npm run build-project:sdk && npm run build-project:vis && ng build --aot ---configuration production ",
"ng:serve-jit-arm64": "export NODE_OPTIONS=--openssl-legacy-provider && ng serve --proxy-config proxy.conf.json",
"ng:serve-jit-amd64": " ng serve --proxy-config proxy.conf.json",
"build:aot": "ngc -p tsconfig-aot.json && rollup -c rollup-config.js_bak",
"rollup": "rollup -c rollup-config.js_bak",
"serve": "lite-server -c=bs-config.json",
"serve:e2e": "lite-server -c=bs-config.e2e.json",
"prestart": "npm run build",
"start": "concurrently \"npm run build:watch\" \"npm run serve\"",
"pree2e": "npm run build:e2e",
"e2e": "concurrently \"npm run serve:e2e\" \"npm run protractor\" --kill-others --success first",
"preprotractor": "webdriver-manager update",
"protractor": "protractor protractor.config.js",
"pretest": "npm run build",
"test": "concurrently \"npm run build:watch\" \"karma start karma.conf.js\"",
"pretest:once": "npm run build",
"test:once": "karma start karma.conf.js --single-run",
"lint": "tslint ./src/**/*.ts -t verbose",
"build-project:sdk": " ng build --project zeppelin-sdk",
"build-project:vis": " ng build --project zeppelin-visualization",
"build:elements": "ng build --prod --project elements --output-hashing none && npm run pack:elements && cp projects/elements/package.json dist/elements",
"pack:elements": "cat ./dist/elements/{runtime,polyfills,main}-es5.js > dist/elements/elements.js && ls -lah dist/elements/elements.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@angular/animations": "^12.0.0",
"@angular/common": "^12.0.0",
"@angular/compiler": "^12.0.0",
"@angular/core": "^12.0.0",
"@angular/forms": "^12.0.0",
"@angular/localize": "^12.0.0",
"@angular/platform-browser": "^12.0.0",
"@angular/platform-browser-dynamic": "^12.0.0",
"@angular/router": "^12.0.0",
"@antv/g6": "3.0.4",
"@shopify/draggable": "^1.0.0-beta.8",
"angular-2-local-storage": "3.0.2",
"angular-in-memory-web-api": "~0.9.0",
"chart.js": "^2.9.3",
"codemirror": "^5.48.0",
"core-js": "^2.4.1",
"dagre": "^0.8.4",
"date-fns": "^2.29.2",
"document-register-element": "^1.7.2",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"ng-chartjs": "^0.1.2",
"ng-terminal": "5.3.0",
"ng-zorro-antd": "^12.0.1",
"ng2-charts": "^2.2.4",
"ngx-markdown": "~12.0.0",
"nprogress": "^0.2.0",
"rxjs": "^6.5.3",
"rxjs-compat": "^6.5.3",
"tinycolor2": "^1.4.1",
"tslib": "^2.1.0",
"zone.js": "~0.11.4",
"systemjs": "^5.0.0",
"mathjax": "2.7.5",
"highlight.js": "^9.15.8",
"github-markdown-css": "^3.0.1",
"@antv/data-set": "^0.10.2",
"xlsx": "^0.14.3",
"monaco-editor": "^0.34.1",
"ansi_up": "^4.0.4",
"diff-match-patch": "^1.0.4",
"@antv/g2": "^3.5.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.0.0",
"@angular/cli": "^12.0.0",
"@angular/compiler-cli": "^12.0.0",
"@angular/language-service": "^12.0.0",
"@types/codemirror": "0.0.76",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"canonical-path": "0.0.2",
"codelyzer": "^6.0.0",
"concurrently": "^3.2.0",
"dagre-d3": "^0.6.4",
"jasmine-core": "^3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lodash": "^4.16.4",
"ng-packagr": "^12.0.0",
"protractor": "~7.0.0",
"rimraf": "^2.5.4",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"ts-node": "~7.0.0",
"tslint": "^6.1.3",
"typescript": "~4.2.3",
"postcss": "^8.3.11"
},
"repository": {}
}