-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 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
{
"name": "flazz",
"private": true,
"type": "module",
"version": "0.1.0",
"license": "Apache-2.0",
"scripts": {
"dev": "run-s deps dev:start",
"dev:start": "concurrently -k \"npm:renderer\" \"npm:main\"",
"renderer": "cd apps/renderer && npm run dev",
"shared": "cd packages/shared && npm run build",
"core": "cd packages/core && npm run build",
"preload": "cd apps/preload && npm run build",
"deps": "run-s shared core preload",
"main": "run-s main:wait main:build main:start",
"main:wait": "wait-on http://localhost:4318",
"main:build": "cd apps/main && npm run build",
"main:start": "cd apps/main && npm run start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "run-s lint typecheck",
"typecheck": "run-s deps && npm-run-all typecheck:*",
"typecheck:shared": "cd packages/shared && tsc --noEmit",
"typecheck:core": "cd packages/core && npm run prisma:generate && tsc --noEmit",
"typecheck:main": "cd apps/main && tsc --noEmit",
"typecheck:renderer": "cd apps/renderer && tsc --noEmit",
"typecheck:preload": "cd apps/preload && tsc --noEmit",
"test": "run-s test:core test:renderer",
"test:core": "cd packages/core && npm run test",
"test:renderer": "cd apps/renderer && npm run test"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"wait-on": "^9.0.3"
}
}