-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 929 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
37
{
"name": "kogepan-me-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"format": "prettier --write src/**/*",
"lint": "next lint",
"fix": "run-s format lint"
},
"dependencies": {
"contentful": "^9.1.5",
"next": "^12.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scroll": "^1.8.4",
"remark": "^14.0.1",
"remark-external-links": "^9.0.1",
"remark-gfm": "^3.0.0",
"remark-highlight.js": "^7.0.1",
"remark-html": "^15.0.1",
"remark-prism": "^1.3.6"
},
"devDependencies": {
"autoprefixer": "^10.3.7",
"eslint": "^8.7.0",
"eslint-config-next": "^12.0.8",
"eslint-config-prettier": "^8.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.9",
"prettier": "^2.4.0",
"tailwindcss": "^3.0.15"
}
}