-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.6 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
{
"name": "inferharness",
"version": "0.11.0",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"engines": {
"node": "25.x"
},
"dependencies": {
"better-sqlite3": "^12.9.0",
"fastify": "^5.6.2"
},
"scripts": {
"build": "npm run build:frontend",
"build:frontend": "npm -w frontend run build",
"check:node": "node scripts/check-node-version.mjs",
"dev": "concurrently \"npm -w backend run dev\" \"npm -w frontend run dev\"",
"prebuild": "npm -w backend run bootstrap-env",
"preinstall": "node scripts/check-node-version.mjs",
"predev": "npm -w backend run bootstrap-env",
"prestart": "npm -w backend run bootstrap-env",
"e2e:serve": "concurrently --kill-others-on-fail \"npm run start:backend\" \"npm -w frontend run dev\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"release:check": "npm run lint && npm test && npm run build",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "npm -w backend run start",
"start:frontend": "npm -w frontend run preview",
"test": "npm -w backend test && npm -w frontend test"
},
"overrides": {
"vite": "^8.0.10",
"shell-quote": "^1.8.4"
},
"optionalDependencies": {
"@rolldown/binding-linux-x64-gnu": "1.0.0-rc.17",
"@rolldown/binding-linux-x64-musl": "1.0.0-rc.17",
"lightningcss-linux-x64-gnu": "1.32.0",
"lightningcss-linux-x64-musl": "1.32.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^8.0.0",
"concurrently": "^9.0.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0"
}
}