-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.11 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.11 KB
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": "texture",
"private": true,
"version": "0.0.11",
"type": "module",
"author": {
"name": "Will Epperson",
"email": "willepp@live.com"
},
"homepage": "https://github.com/cmudig/Texture",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"format": "npx prettier -w .",
"gen-api": "npx openapi-typescript-codegen --input http://127.0.0.1:8080/api/openapi.json --output ./src/backendapi --name TextProfileClient; npx prettier -w ./src/backendapi; npm run rectify-gen-api",
"rectify-gen-api": "git restore src/backendapi/models/ErrorResponse.ts; git restore src/backendapi/models/JsonResponse.ts; git restore src/backendapi/models/ExecResponse.ts; git restore src/backendapi/core/request.ts"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"@tsconfig/svelte": "^5.0.0",
"@types/d3-scale": "^4.0.4",
"apache-arrow": "^18.0.0",
"autoprefixer": "^10.4.14",
"flowbite": "^2.2.0",
"flowbite-svelte": "^0.44.19",
"flowbite-svelte-icons": "^0.4.5",
"isoformat": "^0.2.1",
"monaco-editor": "^0.47.0",
"openapi-typescript-codegen": "^0.25.0",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.7",
"svelte": "^4.0.5",
"svelte-check": "^3.4.6",
"tailwindcss": "^3.3.2",
"tslib": "^2.6.0",
"typescript": "^5.0.2",
"uuid": "^9.0.1",
"vite": "^4.4.5"
},
"dependencies": {
"@types/lodash": "^4.14.198",
"@uwdata/mosaic-core": "file:../../mosaic/packages/core",
"@uwdata/mosaic-duckdb": "file:../../mosaic/packages/duckdb",
"@uwdata/mosaic-inputs": "file:../../mosaic/packages/inputs",
"@uwdata/mosaic-plot": "file:../../mosaic/packages/plot",
"@uwdata/mosaic-sql": "file:../../mosaic/packages/sql",
"@uwdata/vgplot": "file:../../mosaic/packages/vgplot",
"arquero": "^5.2.0",
"d3-scale": "^4.0.2",
"lodash": "^4.17.21",
"mosaic-widget": "file:../../mosaic/packages/widget"
}
}