-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.13 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
{
"name": "dfr-web",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.4",
"@vercel/analytics": "^1.1.1",
"autoprefixer": "^10.4.16",
"highlight.js": "^11.9.0",
"imagemin-mozjpeg": "^10.0.0",
"next": "^14.0.4",
"next-optimized-images": "^2.6.2",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.6",
"tailwindcss": "^3.4.0",
"webp-loader": "^0.6.0"
},
"devDependencies": {
"@types/mdx": "^2.0.10",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/webpack-env": "^1.18.4",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"next lint --fix ."
]
},
"prettier": {
"singleQuote": true
}
}