-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "nextra",
"description": "Minimal Next.js Chakra UI Typescript Template",
"version": "2.0.0",
"license": "MIT",
"repository": "https://github.com/seonglae/nextra.git",
"author": "Seonglae Cho <sungle3737@gmail.com>",
"browserslist": [
"since 2017"
],
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "run-s \"build:**\"",
"build:scripts": "node scripts/build.js",
"build:web": "next build && next-sitemap",
"format": "run-p \"format:**\"",
"format:index": "prettier --write \"*.{js,json,md}\"",
"format:src": "prettier --write \"src/**/*.{css,js,ts,tsx}\""
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/system": "^2.6.2",
"@chakra-ui/theme-tools": "^2.1.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"favicons": "^6.2.2",
"framer-motion": "^6.5.1",
"next": "^14.1.1",
"next-seo": "^5.15.0",
"nprogress": "^0.2.0",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@types/node": "^20.10.2",
"@types/nprogress": "^0.2.3",
"@types/react": "^18.2.40",
"@types/react-dom": "^18.2.17",
"copy": "^0.3.2",
"cross-fetch": "^4.0.0",
"eslint": "^8.55.0",
"next-sitemap": "^4.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
}
}