-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 837 Bytes
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
{
"name": "papers",
"version": "0.1.0",
"private": true,
"description": "A web-first research sharing platform for papers, discussion, and collaboration.",
"license": "Apache-2.0",
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=22 <25"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"lint": "biome check . && turbo run lint",
"test": "turbo run test",
"check": "turbo run check",
"format": "biome format --write . && turbo run format",
"dev": "npm --workspace @papers/web run dev"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/node": "^24.8.1",
"@types/pg": "^8.15.5",
"drizzle-kit": "^0.31.7",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"typescript": "^5.9.3",
"vitest": "^4.1.1"
}
}