-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "magus",
"version": "0.1.0",
"author": {
"name": "Stefan Teixeira",
"email": "stefanfk@gmail.com"
},
"license": "GPL-3.0-or-later",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"style": "prettier --check .",
"style:fix": "prettier --write .",
"test": "jest --colors",
"test:coverage": "npm run test -- --coverage true",
"db:schema": "drizzle-kit generate:sqlite --schema ./src/db/schema.ts",
"db:migrate": "npx tsx src/db/migrate.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"better-sqlite3": "^9.1.1",
"dayjs": "^1.11.10",
"drizzle-orm": "^0.29.0",
"howlongtobeat": "^1.8.0",
"igdb-api-node": "^5.0.2",
"lodash": "^4.17.21",
"next": "14.2.3",
"p-queue": "^7.4.1",
"rc-picker": "^3.14.6",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.12.0",
"sharp": "^0.33.1"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/better-sqlite3": "^7.6.7",
"@types/igdb-api-node": "^5.0.3",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"daisyui": "^4.4.20",
"drizzle-kit": "^0.20.2",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.9",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.1",
"tsx": "^4.1.2",
"typescript": "^5.2.2"
}
}