-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "demo",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"dev:https": "next dev --turbopack --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:build": "tsc --project tsconfig.scripts.json",
"db:seed": "IS_SEEDING=true node dist/scripts/seed.js",
"postinstall": "rm -f src/lib/seed.db && npm run db:build && npm run db:seed"
},
"dependencies": {
"@chopinframework/next": "^1.1.8",
"@chopinframework/react": "^0.1.1",
"@types/sqlite3": "^3.1.11",
"next": "15.4.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@faker-js/faker": "^9.9.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.4.1",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}