-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.56 KB
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
{
"name": "openframe-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p ${PORT:-3000}",
"build": "npm run generate-enums && relay-compiler && next build",
"generate-enums": "node scripts/generate-schema-enums.mjs",
"build:export": "OPENFRAME_BUILD_TARGET=export npm run build",
"build:local": "next build --webpack",
"start": "next start -p ${PORT:-3000}",
"start:standalone": "cp -R public dist/standalone/ && mkdir -p dist/standalone/dist && cp -R dist/static dist/standalone/dist/ && PORT=${PORT:-3000} HOSTNAME=0.0.0.0 NODE_ENV=production node dist/standalone/server.js",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:biome": "biome check .",
"lint:biome:fix": "biome check --fix .",
"format": "biome format .",
"format:fix": "biome format --fix .",
"fetch-schema": "node scripts/fetch-schema.mjs",
"relay": "relay-compiler",
"relay:watch": "relay-compiler --watch",
"type-check": "tsc --noEmit",
"prepare": "cd ../../.. && husky openframe/services/openframe-frontend/.husky || true",
"core:link": "yalc add @flamingo-stack/openframe-frontend-core",
"core:unlink": "yalc remove @flamingo-stack/openframe-frontend-core"
},
"dependencies": {
"@flamingo-stack/openframe-frontend-core": "^0.0.448",
"@hookform/resolvers": "^5.2.2",
"@monaco-editor/react": "^4.7.0",
"@tanstack/react-query": "^5.90.16",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"date-fns": "^4.1.0",
"graphql": "^16.8.0",
"graphql-tag": "^2.12.6",
"highlight.js": "^11.11.1",
"immer": "^10.1.1",
"lucide-react": "^0.454.0",
"next": "^16.2.4",
"next-runtime-env": "^3.2.2",
"react": "^19.2.0",
"react-datepicker": "^8.4.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.71.1",
"react-relay": "^20.1.1",
"relay-runtime": "^20.1.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.6",
"zustand": "^5.0.8"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@next/bundle-analyzer": "^16.2.4",
"@types/node": "^22.15.21",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/react-relay": "^18.2.1",
"@types/relay-runtime": "^20.1.1",
"autoprefixer": "^10.4.0",
"eslint": "^9.27.0",
"eslint-plugin-relay": "^2.0.0",
"husky": "^9.1.7",
"postcss": "^8.5.3",
"relay-compiler": "^20.1.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
},
"optionalDependencies": {
"@next/swc-linux-x64-gnu": "^16.2.4",
"@next/swc-linux-x64-musl": "^16.2.4"
}
}