-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "rollup-codes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@types/node": "20.3.0",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.4",
"classnames": "^2.3.2",
"date-fns": "^2.30.0",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"gray-matter": "^4.0.3",
"next": "13.4.5",
"next-mdx-remote": "^4.4.1",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-tooltip": "^5.14.0",
"remark-gfm": "^3.0.1",
"typescript": "5.1.3"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@types/react-copy-to-clipboard": "^5.0.4",
"path": "^0.12.7",
"prettier": "^2.8.8",
"sass": "^1.63.3"
}
}