-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
104 lines (104 loc) · 3.55 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
{
"name": "malloy-composer-demo",
"description": "Run/Explore/Build Malloy Data Models",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/query-composer"
]
},
"main": "./build/main.js",
"author": "Malloy",
"license": "MIT",
"scripts": {
"lint": "tsc && eslint .",
"lint-fix": "tsc && eslint . --fix",
"start": "npm run server-build && node ./dist/cli.js",
"build": "npm run build-query-composer && ts-node scripts/build",
"build-query-composer": "npm run build -w packages/query-composer",
"test": "npm run test -w packages/query-composer",
"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 $(./scripts/malloy-packages.ts next)",
"malloy-update": "npm install --no-fund --no-audit --save-exact $(./scripts/malloy-packages.ts latest)",
"malloy-link": "npm --no-fund --no-audit link $(./scripts/malloy-packages.ts)",
"malloy-unlink": "npm --no-fund --no-save --no-audit unlink $(./scripts/malloy-packages.ts) && npm --no-fund --no-audit install --force"
},
"bin": {
"malloy-packages": "./scripts/malloy-packages.ts"
},
"dependencies": {
"@malloydata/db-bigquery": "0.0.226",
"@malloydata/db-duckdb": "0.0.226",
"@malloydata/db-postgres": "0.0.226",
"@malloydata/malloy": "0.0.226",
"@malloydata/query-composer": "*",
"@malloydata/render": "0.0.226",
"@popperjs/core": "^2.11.4",
"cors": "^2.8.5",
"duckdb": "^0.9.2",
"express": "^4.21.2",
"mdast-comment-marker": "^2.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hotkeys": "^2.0.0",
"react-query": "^3.34.16",
"react-router-dom": "^6.4.3",
"remark-parse": "^10.0.1",
"shiki": "^1.1.6",
"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/jest": "^29.5.13",
"@types/lodash": "^4.17.14",
"@types/node": "^18.11.11",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/styled-components": "^5.1.19",
"@types/tar-stream": "^2.2.2",
"@typescript-eslint/eslint-plugin": "v6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"archiver": "^5.3.1",
"commander": "^9.4.0",
"concurrently": "^6.2.1",
"esbuild": "^0.19.1",
"esbuild-plugin-svgr": "^=2.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"pkg": "^5.8.0",
"prettier": "~3.0.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^10.0.1",
"ts-node": "^10.9.1",
"typescript": "5.3.3",
"wait-on": "^7.2.0"
},
"pkg": {
"scripts": [
"dist/cli.js"
],
"assets": [
"dist/**/*",
"build/**/*"
],
"compress": "GZip"
}
}