-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@jspaste/frontend",
"private": true,
"license": "EUPL-1.2",
"type": "module",
"scripts": {
"build": "bun run build:next",
"build:next": "bun next build",
"build:standalone": "NEXT_OUTPUT=standalone bun run build:next",
"build:static": "NEXT_OUTPUT=export bun run build:next",
"fix": "bun run fix:biome && bun run fix:package",
"fix:biome": "bun biome check --apply .",
"fix:package": "bun sort-package-json --quiet",
"postinstall": "bun next telemetry disable",
"lint": "bun run lint:biome && bun run lint:tsc",
"lint:biome": "bun biome lint .",
"lint:tsc": "bun tsc --noEmit",
"start": "bun run build && bun next start",
"start:dev": "bun next dev --turbo",
"start:static": "bun run build:static && bunx serve@latest out"
},
"dependencies": {
"@chakra-ui/icons": "~2.1.1",
"@chakra-ui/next-js": "~2.2.0",
"@chakra-ui/react": "~2.8.2",
"@chakra-ui/system": "~2.6.2",
"@monaco-editor/react": "~4.6.0",
"@types/bun": "~1.1.3",
"@types/react": "~18.3.3",
"@types/react-dom": "~18.3.0",
"babel-plugin-react-compiler": "^0.0.0-experimental-487cb0e-20240529",
"highlight.js": "~11.9.0",
"next": "rc",
"react": "rc",
"react-dom": "rc",
"react-icons": "~5.2.1",
"serve": "^14.2.3",
"typescript": "~5.4.5",
"zustand": "~4.5.2"
},
"devDependencies": {
"@biomejs/biome": "~1.7.3",
"lefthook": "1.6.8",
"sort-package-json": "~2.10.0"
},
"trustedDependencies": [
"@biomejs/biome",
"lefthook"
]
}