-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.05 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
{
"name": "@tiledb-inc/viz",
"version": "0.0.1",
"private": true,
"packageManager": "yarn@3.6.3",
"license": "MIT",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/TileDB-Inc/TileDB-Viz.git"
},
"author": {
"name": "TileDB",
"email": "support@tiledb.com"
},
"scripts": {
"test": "yarn workspace @tiledb-inc/viz-core test",
"build": "yarn workspace @tiledb-inc/viz-common build && yarn workspace @tiledb-inc/viz-components build && yarn workspace @tiledb-inc/viz-core build && yarn workspace @tiledb-inc/viz-react build",
"g:tsc": "cd $INIT_CWD && tsc",
"typedoc": "typedoc --plugin typedoc-plugin-markdown --tsconfig ./tsconfig.json",
"quarto": "quarto render ./quarto/ --fail-if-warnings",
"g:eslint": "cd $INIT_CWD && eslint",
"g:parcel": "cd $INIT_CWD && parcel",
"storybook": "yarn workspace @tiledb-inc/viz-react storybook --ci",
"lint": "yarn workspace @tiledb-inc/viz-core lint && yarn workspace @tiledb-inc/viz-react lint",
"lint:fix": "yarn workspace @tiledb-inc/viz-common lint:fix && yarn workspace @tiledb-inc/viz-core lint:fix && yarn workspace @tiledb-inc/viz-react lint:fix"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@parcel/optimizer-data-url": "2.9.3",
"@parcel/packager-ts": "2.9.3",
"@parcel/transformer-inline-string": "2.9.3",
"@parcel/transformer-typescript-types": "2.9.3",
"@types/jest": "^29.0.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.0.1",
"parcel": "2.9.3",
"prettier": "^2.7.1",
"sass": "^1.64.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.24",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "4.7.4",
"vite-plugin-dts": "^3.3.1"
},
"dependencies": {
"node-sass": "^9.0.0",
"svelte-preprocess": "^5.0.4"
}
}