-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "notion-atlas",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Adaptive workspace knowledge graph and recommendation engine for Notion",
"packageManager": "npm@11.17.0",
"engines": {
"node": ">=20.19"
},
"workspaces": [
"packages/*",
"workers",
"apps/*"
],
"scripts": {
"dev": "tsx apps/api/src/index.ts",
"start": "node apps/api/dist/server.mjs",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"worker": "tsx workers/src/index.ts",
"seed:large": "tsx scripts/seed-large.ts",
"db:reset": "tsx scripts/db-reset.ts"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.0",
"esbuild": "^0.25.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.1.0",
"jsdom": "^26.0.0",
"pino-pretty": "^13.0.0",
"prettier": "^3.4.0",
"tsx": "^4.19.0",
"turbo": "^2.3.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.19.0",
"vitest": "^3.0.0"
}
}