-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.72 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
{
"name": "@fullstacked/fullstacked",
"version": "0.10.5",
"scripts": {
"build": "esbuild build.ts --bundle --outfile=.cache/build.js --platform=node --format=esm --packages=external && node .cache/build.js",
"start": "npm run build -- --no-zip && npm start -w platform/node",
"fmt": "prettier . --write && cd core && gofmt -l -w .",
"typecheck": "tsc --noEmit",
"test": "esbuild test/index.ts --bundle --outfile=.cache/test.js --platform=node --format=esm --packages=external && node .cache/test.js "
},
"workspaces": [
"platform/node",
"platform/wasm"
],
"author": "FullStacked",
"license": "GPL-3.0",
"type": "module",
"prettier": {
"tabWidth": 4,
"trailingComma": "none"
},
"dependencies": {
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-liquid": "^6.2.1",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/lang-sass": "^6.0.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.34.1",
"@fullstacked/stack-navigation": "^0.0.2",
"@types/adm-zip": "^0.5.6",
"@types/node": "^22.10.1",
"@types/semver": "^7.5.8",
"adm-zip": "^0.5.16",
"codemirror": "^6.0.1",
"dotenv": "^16.4.5",
"esbuild": "^0.24.2",
"fuse.js": "^7.0.0",
"open": "^10.1.0",
"prettier": "^3.3.3",
"pretty-bytes": "^6.1.1",
"pretty-ms": "^9.1.0",
"puppeteer": "^23.4.1",
"sass": "^1.83.4",
"semver": "^7.6.3",
"slugify": "^1.6.6",
"typescript": "^5.7.2"
}
}