-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1001 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1001 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
34
35
36
37
38
39
40
41
{
"name": "boardforge",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"seed": "tsx src/scripts/seed.ts",
"migrate": "tsx src/scripts/migrate.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"better-sqlite3": "^11.7.0",
"next": "^14.2.21",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^20.17.10",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.35",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"tsx": "^4.22.1",
"typescript": "^5.7.2",
"vitest": "^4.1.6"
}
}