This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.55 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
53
54
55
56
57
58
59
60
61
{
"name": "datocms-plugin-nextjs-sidebar-preview-button",
"version": "0.1.4",
"homepage": "https://github.com/novemberfiveco/datocms-plugin-nextjs-sidebar-preview-button",
"description": "A Datocms plugin to add a preview button to the sidebar of a model",
"license": "MIT",
"keywords": [
"datocms-plugin",
"next.js",
"sidebar"
],
"private": false,
"devDependencies": {
"@types/node": "^16.11.29",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.15",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"prettier": "^2.6.2"
},
"dependencies": {
"datocms-plugin-sdk": "^0.5.2",
"datocms-react-ui": "^0.5.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.30.0",
"react-scripts": "5.0.1",
"typescript": "^4.6.3"
},
"scripts": {
"start": "cross-env BROWSER='none' PUBLIC_URL='/' react-scripts start",
"build": "cross-env PUBLIC_URL='.' react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepublishOnly": "npm run build"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"datoCmsPlugin": {
"title": "Next.js Sidebar Preview Button",
"previewImage": "docs/preview.png",
"coverImage": "docs/cover.png",
"entryPoint": "build/index.html",
"permissions": []
}
}