-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.81 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
72
73
74
75
76
77
78
79
80
81
{
"name": "data-dynamo",
"version": "0.0.1",
"license": "MIT",
"private": true,
"scripts": {
"dev": "prisma migrate dev && next dev",
"build": "prisma migrate deploy && next build",
"start": "npm run build && next start",
"lint": "next lint",
"find:unused": "npx next-unused",
"prettier": "prettier --write ."
},
"sideEffects": false,
"dependencies": {
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.11",
"@tanstack/react-query": "^4.12.0",
"@tanstack/react-query-devtools": "^4.14.5",
"axios": "^1.1.3",
"chance": "^1.1.11",
"clsx": "^1.2.1",
"daisyui": "^2.22.0",
"formidable": "^2.1.1",
"nanoid": "^4.0.1",
"next": "latest",
"prisma": "^4.10.1",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@prisma/client": "^4.10.1",
"@types/chance": "^1.1.3",
"@types/formidable": "^2.0.5",
"@types/node": "17.0.35",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.15",
"@types/react-dom": "18.0.5",
"autoprefixer": "^10.4.7",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.12",
"tailwindcss": "^3.1.2",
"ts-node": "^10.9.1",
"typescript": "4.7.2"
},
"next-unused": {
"alias": {
"@components/*": [
"components/*"
],
"@sections/*": [
"sections/*"
],
"@libs/*": [
"libs/*"
],
"@hooks/*": [
"hooks/*"
],
"@utils/*": [
"utils/*"
]
}
},
"include": [
"components",
"libs",
"pages"
],
"exclude": [],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}