-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1 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
{
"name": "nimblebun-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts --ext .tsx",
"export": "npm run build && next export",
"export:draft": "cross-env NEXT_PUBLIC_DRAFT_LEVEL=draft APP_PREFIX=/docs npm run export",
"export:release": "cross-env NEXT_PUBLIC_DRAFT_LEVEL=release npm run export"
},
"dependencies": {
"@sindresorhus/slugify": "^1.1.0",
"cross-env": "^7.0.2",
"date-fns": "^2.16.1",
"gray-matter": "^4.0.2",
"next": "10.0.2",
"next-optimized-images": "^2.6.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-markdown": "^5.0.3",
"react-syntax-highlighter": "^15.3.0",
"sass": "^1.29.0"
},
"devDependencies": {
"@types/node": "^14.14.9",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"typescript": "^4.1.2"
}
}