forked from hpcc-systems/Visualization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 6.1 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "hpcc-js",
"version": "2.104.17",
"description": "HPCC Visualization Framework",
"private": true,
"jsdelivr": "dist/index.umd.min.js",
"workspaces": [
"utils/*",
"packages/*",
"components/*",
"demos/quickstart/*",
"demos/react/*",
"demos/*",
"tests/*"
],
"scripts": {
"uninstall": "lerna clean && rimraf demos/**/node_modules apps/**/node_modules",
"clean-root": "rimraf build coverage dist lib* types temp tmp *.tsbuildinfo .vitepress/dist .vitepress/cache docs/api",
"clean": "lerna run clean && npm run clean-root",
"stamp": "lerna run stamp",
"stamp-main": "node ./utils/bundle/src/stamp-main.js",
"compile-es6": "lerna run --ignore \"@hpcc-js/test-*\" compile-es6",
"compile-es6-watch": "lerna run --nosort --stream --ignore \"@hpcc-js/test-*\" compile-es6-watch",
"compile-umd": "lerna run --ignore \"@hpcc-js/test-*\" compile-umd",
"api-extractor": "api-extractor run --local --verbose",
"api-extractor-watch": "nodemon --watch types \"run-s api-extractor\"",
"api-documenter": "api-documenter markdown --input-folder ./temp --output-folder ./docs/api",
"api-meta": "node utils/gen-meta.js",
"copy-res": "copyfiles -u 1 \"./resources/**/*.{png,jpg,gif,ico}\" ./.vitepress/dist/resources/",
"compile-root": "tsc -p ./tsconfig.json",
"bundle-root": "node ./esbuild.js",
"build-util": "lerna run --scope \"@hpcc-js/bundle\" build",
"build-shim": "lerna run --scope \"@hpcc-js/*-shim\" build",
"build-loader": "lerna run --scope \"@hpcc-js/loader\" build",
"build-gallery": "lerna run --scope \"@hpcc-js/demo-gallery\" build",
"build-dev": "npm-run-all --parallel build-util build-shim --parallel build-loader compile-umd",
"build-test": "lerna run --scope \"@hpcc-js/test-*\" build",
"build": "lerna run --ignore \"@hpcc-js/test-*\" --ignore \"@hpcc-js/xxxx-*\" --ignore \"@hpcc-js/demo-*\" build",
"build-api": "run-s compile-root api-extractor api-documenter api-meta",
"build-vitepress": "vitepress build .",
"build-docs": "npm-run-all --serial build-vitepress --parallel bundle-root copy-res build-patch",
"build-patch": "node utils/patch-docs.mjs",
"build-all": "npm-run-all --serial build compile-umd --parallel build-gallery build-test",
"minimize": "lerna run --ignore \"@hpcc-js/test-*\" --ignore \"@hpcc-js/demo-*\" minimize",
"gen-legacy-types": "lerna run --ignore \"@hpcc-js/test-*\" --ignore \"@hpcc-js/demo-*\" gen-legacy-types",
"build-min": "run-s build minimize",
"watch": "tsc --build --watch --verbose",
"lint": "lerna run --no-bail lint -- -- --max-warnings=0",
"lint-fix": "lerna run --no-bail lint -- -- --fix",
"test-gallery": "lerna run test --scope \"@hpcc-js/demo-gallery\"",
"test-webpack": "lerna run test --concurrency 1 --scope \"@hpcc-js/test-*\"",
"test": "run-s test-webpack test-gallery",
"test:chrome": "lerna run test:chrome --scope \"@hpcc-js/test-*\"",
"test:firefox": "lerna run test:firefox --scope \"@hpcc-js/test-*\"",
"test:ie": "lerna run test:ie --concurrency 1 --scope \"@hpcc-js/test-*\"",
"publish-clean-lint": "run-p lint clean",
"publish-changed": "lerna changed",
"publish-version": "lerna version --no-push --yes",
"publish-update-lock": "npm i --package-lock-only",
"publish-tag": "node ./utils/bundle/src/tag.js",
"publish-commit": "git commit -a -m \"chore(publish): Bump versions and build all\"",
"publish-push": "git push --follow-tags upstream",
"publish-lerna": "lerna publish from-package --yes",
"publish-manual": "run-s lint build minimize gen-legacy-types compile-umd publish-lerna",
"publish-prep": "run-s publish-clean-lint publish-version stamp build-all minimize gen-legacy-types test",
"publish-finalize": "run-s publish-commit publish-lerna",
"publish-gh-actions": "npm ci && npm run lint && npm run build && npm run minimize && npm run compile-umd && npm run build-gallery && npm run build-test && npm run test && npm run publish-lerna",
"tag": "run-s publish-version stamp stamp-main publish-update-lock publish-commit publish-tag publish-push",
"purge-jsdelivr": "node ./utils/purge-jsdelivr.js",
"serve-docs": "vitepress dev .",
"serve-docs-build": "vitepress serve --port 3000 .",
"serve-vite": "vite",
"dev-start": "ws",
"update-workspaces": "lerna run --stream update",
"update-root": "npx npm-check-updates -u -t minor",
"update": "run-p update-workspaces update-root"
},
"devDependencies": {
"@larscom/cpx": "2.1.0",
"@microsoft/api-documenter": "7.19.24",
"@microsoft/api-extractor": "7.33.6",
"@microsoft/api-extractor-model": "7.25.2",
"@rollup/plugin-alias": "3.1.9",
"@rollup/plugin-commonjs": "21.1.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-typescript": "8.5.0",
"@types/chai": "4.3.4",
"@types/mocha": "9.1.1",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"chai": "4.3.7",
"copy-webpack-plugin": "10.2.4",
"copyfiles": "2.4.1",
"css-loader": "6.7.1",
"dojo-webpack-plugin": "3.0.4",
"downlevel-dts": "0.11.0",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "8.27.0",
"eslint-plugin-react-hooks": "4.6.0",
"lerna": "5.6.2",
"local-web-server": "5.2.1",
"mocha": "9.2.2",
"mocha-headless-chrome": "4.0.0",
"npm-run-all": "4.1.5",
"puppeteer": "13.7.0",
"rimraf": "3.0.2",
"rollup": "2.79.1",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-transform-tagged-template": "0.0.3",
"source-map-loader": "3.0.2",
"style-loader": "3.3.1",
"terser": "5.15.1",
"terser-webpack-plugin": "5.3.6",
"typescript": "4.8.4",
"url-loader": "4.1.1",
"vitepress": "0.22.4",
"webpack": "5.75.0",
"webpack-cli": "4.10.0",
"webpack-hasjs-plugin": "1.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/Visualization.git"
},
"author": "HPCC Systems",
"license": "Apache-2.0",
"homepage": "https://github.com/hpcc-systems/Visualization"
}