-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "drinks",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build && next-export-optimize-images && next-sitemap --config next-sitemap.config.mjs",
"start": "npx serve out",
"lint": "next lint",
"prettify": "prettier --write \"**/*.{js,ts,tsx,json,css,scss,yaml}\""
},
"dependencies": {
"common-stuff": "^1.11.0",
"disqus-react": "^1.1.5",
"fuse.js": "^7.0.0",
"next": "14.2.3",
"next-pwa": "^5.6.0",
"prop-types": "^15.8.1",
"qrcode.react": "^3.1.0",
"react": "18.3.1",
"react-async-hook": "^4.0.0",
"react-daisyui": "^5.0.0",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"react-sortablejs": "^6.1.4",
"sortablejs": "^1.15.2",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/js-yaml": "^4.0.9",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/sortablejs": "^1.15.8",
"autoprefixer": "^10.4.19",
"daisyui": "^4.11.1",
"next-export-optimize-images": "^4.4.0",
"next-plugin-yaml": "^1.0.1",
"next-sitemap": "^4.2.3",
"prettier": "^3.2.5",
"schema-dts": "^1.1.2",
"sharp": "^0.33.4",
"tailwindcss": "3.4.3",
"typescript": "5.4.5"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"browserslist": [
"defaults"
],
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}