-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 5.07 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 5.07 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"//": "next@16.1.4 has Turbopack bug: SWC panics on getter + nullish coalescing in config.ts",
"name": "codjiflo",
"private": true,
"version": "0.0.1",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "node scripts/copy-sql-wasm.js",
"dev": "node scripts/dev.js",
"build": "cross-env NODE_OPTIONS=--use-system-ca opennextjs-cloudflare build",
"build:next": "cross-env NODE_OPTIONS=--use-system-ca next build",
"preview": "cross-env NODE_OPTIONS=--use-system-ca opennextjs-cloudflare preview",
"deploy": "cross-env NODE_OPTIONS=--use-system-ca opennextjs-cloudflare deploy",
"start": "cross-env NODE_OPTIONS=--use-system-ca next start",
"lint": "eslint . --fix --quiet --max-warnings 0 --prune-suppressions",
"lint:check": "eslint . --quiet --max-warnings 0",
"storybook": "storybook dev -p 6006 --quiet",
"build-storybook": "storybook build --quiet",
"typecheck": "tsc --noEmit",
"test": "vitest --reporter=dot",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch --reporter=dot",
"test:coverage": "vitest --coverage --coverage.reporter=text --coverage.reporter=json --coverage.reporter=json-summary --coverage.reporter=html --reporter=dot",
"test:storybook": "vitest --config=vitest.storybook.config.ts --reporter=dot",
"test:e2e": "cross-env E2E_DEPENDENCIES_MODE=mock playwright test --reporter=dot",
"test:e2e:prod": "cross-env E2E_DEPENDENCIES_MODE=prod playwright test --reporter=dot",
"test:e2e:headed": "cross-env E2E_DEPENDENCIES_MODE=mock playwright test --headed --reporter=dot",
"test:e2e:ui": "cross-env E2E_DEPENDENCIES_MODE=mock playwright test --ui",
"test:e2e:debug": "cross-env E2E_DEPENDENCIES_MODE=mock playwright test --debug",
"test:all": "npm run lint -s && npm run typecheck -s && npm run spec:validate -s && npm run test -s -- --coverage && npm run test:e2e -s && npm run test:storybook -s",
"spec:validate": "openspec validate --all --strict",
"sync-lockfile": "npm install --ignore-scripts"
},
"dependencies": {
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-php": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-yaml": "^6.1.3",
"@codemirror/language": "^6.12.3",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.43.0",
"@uiw/react-codemirror": "^4.25.10",
"codemirror": "^6.0.2",
"diff-match-patch": "^1.0.5",
"jszip": "^3.10.1",
"lucide-react": "^1.7.0",
"next": "^16.2.6",
"react": "^19.2.6",
"react-aria": "^3.48.0",
"react-aria-components": "^1.17.0",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"sql.js": "^1.11.0",
"zustand": "^5.0.13"
},
"overrides": {
"esbuild": "^0.25.0",
"path-to-regexp": "^8.0.0",
"@playwright/test": "^1.60.0",
"playwright": "^1.60.0",
"playwright-core": "^1.60.0",
"tar": "^7.5.3",
"undici": "^6.24.1"
},
"browserslist": {
"production": [
"chrome >= 90",
"edge >= 90",
"firefox >= 88",
"safari >= 14",
"ios_saf >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@axe-core/react": "^4.11.3",
"@eslint/js": "^9.32.0",
"@fission-ai/openspec": "^1.3.1",
"@opennextjs/cloudflare": "^1.19.11",
"@playwright/test": "^1.60.0",
"@storybook/addon-vitest": "^10.4.1",
"@storybook/react": "^10.4.1",
"@storybook/react-vite": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/diff-match-patch": "^1.0.36",
"@types/node": "^25.1.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/sql.js": "^1.4.9",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/browser-playwright": "^4.1.7",
"@vitest/coverage-v8": "^4.0.17",
"@vitest/ui": "^4.0.17",
"autoprefixer": "^10.4.27",
"better-sqlite3": "^12.6.2",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"eslint": "^9.32.0",
"eslint-config-next": "^16.2.2",
"eslint-plugin-playwright": "^2.10.4",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^10.4.1",
"globals": "^17.3.0",
"jsdom": "^27.3.0",
"pino": "^10.3.1",
"playwright": "^1.60.0",
"playwright-codemirror": "^0.7.0-alpha",
"playwright-core": "^1.60.0",
"postcss": "^8.5.12",
"storybook": "^10.3.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.60.1",
"vite": "^7.3.3",
"vitest": "^4.0.17",
"wrangler": "^4.96.0"
}
}