-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 3.02 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
{
"name": "quest-bound",
"private": true,
"version": "2.2.42",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "npm run dev -w @quest-bound/core-engine",
"dev:game": "npm run dev:game -w @quest-bound/core-engine",
"dev:https-setup": "tsx scripts/dev-https-setup.ts",
"build": "tsc -b && npm run build -w @quest-bound/core-engine",
"lint": "eslint .",
"preview": "npm run preview -w @quest-bound/core-engine",
"start": "npm run preview -w @quest-bound/core-engine",
"test": "cypress open",
"test:unit": "vitest run",
"test:qbscript": "vitest run packages/qbscript",
"test:cloud": "vitest run packages/cloud",
"test:local-db": "vitest run packages/local-db",
"test:runtime": "vitest run packages/runtime",
"test:core-engine": "vitest run packages/core-engine",
"test:all": "npm run test:qbscript && npm run test:cloud && npm run test:local-db && npm run test:runtime && npm run test:core-engine",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:coverage": "npm run test:unit:coverage",
"cypress:run:component": "cypress run --component",
"test:e2e": "start-server-and-test dev http://localhost:5173 cypress:run:e2e",
"test:e2e:open": "cypress open --e2e",
"test:e2e:clean": "rm -rf node_modules/.vite && npm run test:e2e",
"test:component": "cypress run --component",
"test:component:open": "cypress open --component",
"test:cypress:all": "npm run test:e2e && npm run test:component",
"build:robots": "node build-robots.js",
"qbs": "tsx packages/qbscript/src/interpreter/cli.ts",
"prepare": "husky",
"sync-versions": "node scripts/sync-workspace-versions.mjs",
"db:push": "npm run db:push -w @quest-bound/remote-db",
"db:start": "npm run db:start -w @quest-bound/remote-db",
"db:stop": "npm run db:stop -w @quest-bound/remote-db",
"db:reset": "npm run db:reset -w @quest-bound/remote-db",
"publish:packages": "node scripts/publish-workspaces.mjs",
"deploy": "sh scripts/deploy.sh"
},
"devDependencies": {
"@cypress/react": "^9.0.1",
"@cypress/vite-dev-server": "^7.0.0",
"@eslint/js": "^9.33.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/mocha": "^10.0.10",
"@types/node": "^24.3.1",
"@vitest/coverage-v8": "^4.0.18",
"cypress": "^15.2.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"prettier-plugin-organize-imports": "^4.2.0",
"sharp": "^0.34.4",
"start-server-and-test": "^2.1.0",
"supabase": "^2.78.1",
"tsx": "^4.21.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"@vitejs/plugin-react": "^5.0.0",
"vite": "^7.1.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.6.1"
}
}