-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.65 KB
/
package.json
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
50
51
52
53
54
55
56
57
{
"name": "ncrmro-static",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=19"
},
"scripts": {
"dev": "npm run build-migrations && npm run mig && next dev",
"build": "next build",
"start": "node .next/standalone/server.js",
"lint": "next lint",
"mig": "node database/dist/migrations.js --seed && DATABASE_URL=database/sqlite3.db kysely-codegen",
"e2e": "playwright test",
"typegen": "DATABASE_URL=database/sqlite3.db kysely-codegen",
"db": "litecli ${DATABASE_PATH:-database/sqlite3.db}",
"build-migrations": "tsc --module nodenext src/lib/migrations.ts --outDir database/dist"
},
"dependencies": {
"@headlessui/react": "^1.7.16",
"@heroicons/react": "^2.0.18",
"@tailwindcss/forms": "^0.5.4",
"@types/node": "18.15.11",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"autoprefixer": "10.4.14",
"better-sqlite3": "^8.4.0",
"kysely": "^0.26.1",
"luxon": "^3.4.3",
"next": "13.4.12",
"next-mdx-remote": "^4.4.1",
"next-pwa": "^5.6.0",
"postcss": "8.4.22",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-highlight": "^0.15.0",
"react-markdown": "^9.0.1",
"sharp": "^0.32.5",
"tailwindcss": "3.3.1",
"typescript": "5.0.4",
"yaml": "^1.10.2"
},
"devDependencies": {
"@playwright/test": "^1.35.1",
"@types/better-sqlite3": "^7.6.4",
"@types/luxon": "^3.3.2",
"@types/react-highlight": "^0.12.5",
"eslint": "8.49.0",
"eslint-config-next": "13.5.2",
"kysely-codegen": "^0.10.1",
"prettier": "^2.4.1"
},
"prettier": {
"proseWrap": "always"
}
}