forked from malloydata/malloy-composer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.36 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
{
"name": "malloy-composer-demo",
"description": "Run/Explore/Build Malloy Data Models",
"version": "0.0.0",
"config": {
"malloy_packages": [
"@malloydata/malloy",
"@malloydata/db-bigquery",
"@malloydata/db-duckdb",
"@malloydata/db-postgres",
"@malloydata/render"
]
},
"private": true,
"main": "./build/main.js",
"author": "Malloy",
"license": "MIT",
"scripts": {
"lint": "tsc && eslint .",
"start": "npm run server-build && node ./dist/cli.js",
"build": "ts-node scripts/build",
"clean": "rm -rf ./build && rm -rf ./dist && rm -rf ./pkg && rm -rf ./bundle",
"create-bundles": "ts-node scripts/create-release-bundles",
"server-build": "ts-node scripts/package-server --skip-package",
"server-start": "npm run server-build && node ./dist/cli.js ./malloy-samples",
"server-package": "ts-node scripts/package-server",
"build-duckdb-wasm": "ts-node scripts/build-duckdb-wasm",
"start-duckdb-wasm": "NODE_ENV=development npm run build-duckdb-wasm 9999",
"watch-duckdb-wasm": "NODE_ENV=development npm run build-duckdb-wasm",
"malloy-update-next": "npm install --no-fund --no-audit --save-exact $(echo $npm_package_config_malloy_packages | sed -E 's/(@malloydata\\/[-a-z]+)/\\1@next/g')",
"malloy-update": "npm install --no-fund --no-audit --save-exact $(echo $npm_package_config_malloy_packages | sed -E 's/(@malloydata\\/[-a-z]+)/\\1@latest/g')",
"malloy-link": "npm --no-fund --no-audit link $npm_package_config_malloy_packages",
"malloy-unlink": "npm --no-fund --no-save --no-audit unlink $npm_package_config_malloy_packages && npm --no-fund --no-audit install --force"
},
"dependencies": {
"@malloydata/db-bigquery": "0.0.37",
"@malloydata/db-duckdb": "0.0.37",
"@malloydata/db-postgres": "0.0.37",
"@malloydata/malloy": "0.0.37",
"@malloydata/render": "0.0.37",
"@popperjs/core": "^2.11.4",
"cors": "^2.8.5",
"duckdb": "^0.7.1",
"express": "^4.18.2",
"mdast-comment-marker": "^2.1.0",
"moment-js": "^1.1.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hotkeys": "^2.0.0",
"react-popper": "^2.2.5",
"react-query": "^3.34.16",
"react-router-dom": "^6.4.3",
"remark-parse": "^10.0.1",
"shiki": "^0.10.1",
"styled-components": "^5.3.3",
"unified": "^10.1.2",
"url": "^0.11.0",
"web-vitals": "^2.1.0"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/moment": "^2.13.0",
"@types/node": "^18.11.11",
"@types/node-fetch": "^2.6.2",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.19",
"@types/tar-stream": "^2.2.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.18.0",
"archiver": "^5.3.1",
"commander": "^9.4.0",
"concurrently": "^6.2.1",
"esbuild": "0.14.13",
"esbuild-plugin-svgr": "^1.0.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"pkg": "^5.8.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^10.0.1",
"ts-node": "^10.9.1",
"typescript": "4.7.4",
"wait-on": "^6.0.1"
},
"pkg": {
"scripts": [
"dist/cli.js"
],
"assets": [
"dist/**/*",
"build/**/*"
],
"compress": "GZip"
}
}