-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.67 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.67 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
{
"name": "@metaverse-systems/llm-tutor",
"version": "0.0.0",
"private": true,
"description": "Self-hostable LLM-powered tutoring platform",
"license": "MIT",
"packageManager": "npm@10.8.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"pretest": "npm run build --workspace @metaverse-systems/llm-tutor-shared",
"dev:desktop": "npm run dev --workspace @metaverse-systems/llm-tutor-desktop",
"build": "npm run build --workspaces",
"lint": "node ./scripts/lint-all.cjs",
"test": "npm run test --workspaces",
"test:e2e": "npm run test:e2e --workspaces",
"test:a11y": "npm run test:a11y --workspaces",
"diagnostics:export": "node apps/desktop/scripts/export-diagnostics.cjs",
"format:css": "node ./scripts/format-css.cjs",
"tailwind:build": "node ./scripts/tailwind-build.cjs",
"format": "npm run format:css",
"build:tokens": "npm run build:tokens --workspace @metaverse-systems/llm-tutor-shared"
},
"devDependencies": {
"@axe-core/playwright": "^4.9.2",
"autoprefixer": "^10.4.20",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"postcss": "^8.4.47",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.3.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.7",
"tailwindcss": "^3.4.13"
},
"dependencies": {
"electron-store": "^9.0.0"
}
}