forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
146 lines (146 loc) · 5.51 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/finos/perspective"
},
"changelog": {
"labels": {
"enhancement": "Added",
"bug": "Fixed",
"internal": "Internal"
}
},
"emscripten": "2.0.29",
"engines": {
"node": ">=12.7.0"
},
"workspaces": [
"rust/*",
"packages/*",
"examples/*",
"tools/perspective-build",
"tools/perspective-test",
"docs",
"cpp/perspective",
"python/perspective"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@types/ws": "^7.2.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"arraybuffer-loader": "^1.0.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"chalk": "^2.4.2",
"cpy-cli": "^3.1.1",
"css-loader": "^0.28.7",
"cssnano": "^4.1.10",
"cssnano-preset-lite": "^1.0.1",
"dotenv": "^8.1.0",
"esbuild": "^0.13.12",
"esbuild-plugin-less": "^1.1.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^8.1.0",
"html-loader": "^0.5.1",
"html-loader-jest": "^0.2.1",
"html-webpack-plugin": "^4.5.1",
"husky": "^7.0.4",
"inquirer": "^7.0.0",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"jsdoc": "3.5.5",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^4.0.1",
"lerna": "^3.22.1",
"less": "^4.1.0",
"less-loader": "^7.2.1",
"mini-css-extract-plugin": "^1.3.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"npm-pack-here": "^1.2.0",
"npm-run-all": "^4.1.3",
"postcss": "^7.0.19",
"postcss-loader": "^4.3.0",
"prettier": "^2.4.0",
"puppeteer": "^13.1.3",
"rimraf": "^2.6.2",
"sinon": "^7.3.1",
"style-loader": "^0.18.2",
"term-img": "^4.1.0",
"ts-loader": "^6.2.0",
"typedoc": "^0.22.7",
"typedoc-plugin-markdown": "^3.11.6",
"typedoc-plugin-no-inherit": "^1.3.1",
"typescript": "4.3.3",
"webfontloader": "^1.6.28",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^3.0.7"
},
"resolutions": {
"graceful-fs": "^4.2.4",
"jest": "^25.1.0",
"write-file-atomic": "3.0.0",
"postcss": "^7.0.19",
"webpack": "^5.14.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"autoprefixer": "9.7.0",
"@lumino/algorithm": "^1.9.1",
"@lumino/commands": "^1.20.0",
"@lumino/coreutils": "^1.12.0",
"@lumino/disposable": "^1.10.1",
"@lumino/domutils": "^1.8.1",
"@lumino/dragdrop": "^1.14.0",
"@lumino/keyboard": "^1.8.1",
"@lumino/messaging": "^1.10.1",
"@lumino/properties": "^1.8.1",
"@lumino/signaling": "^1.10.1",
"@lumino/virtualdom": "^1.14.1"
},
"scripts": {
"postinstall": "node scripts/install_emsdk.js",
"build,test": "npm run --silent build && npm run --silent test",
"build,test,bench": "npm run --silent build && npm run --silent test && npm run --silent bench",
"build,bench": "npm run --silent build && npm run --silent bench",
"build_js": "node scripts/build_js.js",
"build": "node scripts/build.js",
"build_python": "node scripts/build_python.js",
"bench": "node scripts/bench.js",
"bench_python": "python3 python/perspective/bench/perspective_benchmark.py",
"stresstest_python": "python3 python/perspective/bench/stresstest/main.py",
"_wheel_python": "node scripts/_wheel_python.js",
"setup": "node scripts/setup.js",
"docs": "node scripts/docs.js",
"test": "node scripts/test.js",
"test:jupyter": "yarn workspace @finos/perspective-jupyterlab test:jupyter",
"test_js": "node scripts/test_js.js",
"test_python": "node scripts/test_python.js",
"clean": "node scripts/clean.js",
"start": "lerna run start --stream --scope",
"prepush": "npm-run-all lint_js lint_python",
"prepare": "husky install",
"lint_js": "npm-run-all lint:*",
"lint:eslint": "eslint \"examples/**/*.js\" \"examples/**/*.ts\" \"examples/**/*.tsx\" \"scripts/*.js\" \"rust/**/*.ts\" \"rust/**/*.js\" \"packages/**/*.js\" \"packages/**/*.ts\" \"cpp/**/*.js\"",
"lint_python": "node scripts/lint_python.js",
"fix:es": "npm run lint:eslint -- --fix",
"fix:md": "prettier docs/md/*.md --prose-wrap=always --write",
"fix:cpp": "node scripts/fix_cpp.js",
"fix:less": "prettier --tab-width 4 --write **/less/*.less",
"fix:html": "prettier --tab-width 4 --write **/html/*.html -r",
"fix:json": "prettier --tab-width 4 --write packages/**/package.json rust/**/package.json examples/**/package.json docs/package.json",
"fix:python": "node scripts/lint_python.js --fix",
"fix": "npm-run-all --silent fix:*",
"version": "python3 python/perspective/scripts/write_version.py && git add python/perspective/perspective/core/_version.py",
"jlab_link": "node scripts/jlab_link.js",
"repl": "node scripts/repl.js"
}
}