-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 968 Bytes
/
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
{
"name": "next-image-test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run replace:images && next dev",
"build": "npm run replace:images && next build",
"start": "next start",
"lint": "next lint",
"replace:images": "rm -rf ./public/content && find ./content ! -name '*.yaml' | cpio -pdm ./public"
},
"dependencies": {
"@next/font": "13.1.6",
"@types/d3": "^7.4.0",
"@types/node": "18.14.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"d3": "^7.8.2",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"markdown-it": "^13.0.1",
"next": "^13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.31.3",
"typescript": "4.9.5"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"autoprefixer": "^10.4.13",
"next-plugin-yaml": "^1.0.1",
"postcss": "^8.4.21",
"sass": "^1.58.3",
"tailwindcss": "^3.2.7"
}
}