-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.45 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
{
"name": "kaleidoshare",
"devDependencies": {
"@monaco-editor/react": "^4.5.1",
"@playwright/test": "^1.34.3",
"@simplewebauthn/browser": "^7.2.0",
"@types/matter-js": "^0.18.3",
"@types/node": "^20.2.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react": "^4.0.0",
"ajv": "^8.12.0",
"eslint": "^8.43.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"github-markdown-css": "^5.2.0",
"matter-js": "^0.19.0",
"npm-run-all": "^4.1.5",
"poly-decomp": "^0.3.0",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-json-schema-generator": "^1.2.0",
"tsx": "^3.12.7",
"vite": "^4.3.5",
"vite-plugin-markdown": "^2.2.0-2"
},
"scripts": {
"dev": "run-p dev:*",
"dev:frontend": "vite",
"dev:backend": "deno run -A --watch --unstable --config server/deno.jsonc server/index.ts",
"build": "run-s build:*",
"build:schema": "ts-json-schema-generator --path 'schema/schema.ts' --out schema/schema.json",
"build:frontend": "vite build",
"preview": "deno run -A --unstable --config server/deno.jsonc server/index.ts",
"test": "run-s test:*",
"test:backend": "node --loader tsx --test ./test/backend/*.test.mts",
"test:frontend": "playwright test"
}
}