-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 2.08 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
{
"name": "malloydata.github.io",
"version": "0.0.1",
"description": "Malloy documentation",
"private": true,
"scripts": {
"clean": "rm -rf docs",
"build-script": "ts-node scripts/build",
"build": "npm run build-script && node dist/build --baseurl ''",
"build-watch": "npm run build-script && node dist/build --watch --baseurl ''",
"start-server": "http-server docs -p 4000",
"build-prod": "npm run build-script && node dist/build --baseurl ''",
"serve": "concurrently --kill-others 'npm run build-watch' 'npm run start-server'",
"malloy-update-next": "npm install --no-fund --no-audit --save-exact $(./scripts/malloy-packages.js next)",
"malloy-update": "npm install --no-fund --no-audit --save-exact $(./scripts/malloy-packages.js latest)",
"malloy-link": "npm --no-fund --no-audit link $(./scripts/malloy-packages.js)",
"malloy-unlink": "npm --no-fund --no-save --no-audit unlink $(./scripts/malloy-packages.js) && npm --no-fund --no-audit install --force"
},
"bin": {
"malloy-packages": "./scripts/malloy-packages.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malloydata/malloydata.github.io.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/malloydata/malloydata.github.io/issues"
},
"homepage": "https://github.com/malloydata/malloydata.github.io#readme",
"devDependencies": {
"@malloydata/db-duckdb": "0.0.226",
"@malloydata/malloy": "0.0.226",
"@malloydata/malloy-sql": "0.0.226",
"@malloydata/render": "0.0.226",
"@malloydata/syntax-highlight": "0.0.226",
"@types/jsdom": "^20.0.0",
"concurrently": "^6.2.1",
"esbuild": "^0.17.16",
"fs-extra": "^10.1.0",
"http-server": "^14.1.1",
"jsdom": "^19.0.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^10.0.1",
"shiki": "^0.10.1",
"ts-node": "^10.9.1",
"unified": "^10.1.2"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"handlebars": "^4.7.7",
"remark-frontmatter": "^4.0.1",
"yaml": "^2.3.1"
},
"engines": {
"node": ">=20.0.0"
}
}