-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.82 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
{
"name": "@galacticcouncil/apps",
"private": false,
"bugs": {
"url": "https://github.com/galacticcouncil/apps/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/galacticcouncil/apps.git"
},
"type": "module",
"workspaces": [
"packages/*",
"pages/*"
],
"scripts": {
"build": "turbo run build",
"build:watch": "turbo run build:watch",
"clean": "turbo run clean",
"dev:apps": "npm run build:watch & npm run dev --prefix pages/apps-web",
"dev:ui": "npm run build:watch & npm run dev --prefix pages/api-viewer",
"dist": "turbo run dist",
"link": "turbo run link",
"changeset": "changeset",
"changeset:version": "node ./scripts/changeset-version.mjs",
"changeset:snapshot": "node ./scripts/changeset-snapshot.mjs",
"prerelease": "npm run build",
"release": "changeset publish",
"postrelease": "bash ./scripts/changeset-push.sh"
},
"dependencies": {
"@types/node": "^22.5.5"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@craftamap/esbuild-plugin-html": "^0.7.0",
"esbuild": "^0.20.2",
"esbuild-plugin-compress": "^1.0.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-lit-css": "^3.0.0",
"esbuild-plugin-lit-minify-html": "^1.0.2",
"esbuild-plugin-wasm": "^1.0.0",
"lightningcss": "^1.25.1",
"node-html-parser": "^5.4.2-0",
"patch-package": "^7.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"tsc-alias": "^1.8.8",
"turbo": "^2.0.3",
"typescript": "^5.0.4"
},
"optionalDependencies": {
"@esbuild/linux-x64": "0.20.2",
"lightningcss-linux-x64-gnu": "1.25.1"
},
"overrides": {
"cross-spawn": "^7.0.5",
"@vaadin/router": {
"path-to-regexp": "3.3.0"
}
},
"packageManager": "npm@10.7.0"
}