-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.57 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "datocms-plugin-custom-page",
"homepage": "https://github.com/voorhoede/datocms-plugin-custom-page",
"version": "2.1.0",
"description": "The custom page DatoCMS plugin adds the ability to have custom pages in your DatoCMS instance",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "cross-env BROWSER='none' PUBLIC_URL='/' webpack-dev-server --mode=development",
"build": "cross-env PUBLIC_URL='.' webpack --mode=production",
"prettier": "prettier --write .",
"pre-commit": "npm run prettier",
"prepack": "npm run build",
"prepare": "husky",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"datocms-plugin-sdk": "^1.1.0",
"datocms-react-ui": "^1.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"slugify": "^1.6.6",
"typescript": "^5.5.4"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint-plugin-prettier": "^5.2.1",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.2",
"mini-css-extract-plugin": "^2.9.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"files": [
"build",
"docs"
],
"keywords": [
"datocms",
"datocms-plugin",
"custom",
"page",
"custom-page",
"pages",
"multiple-pages",
"docs",
"documentation",
"documentation-page",
"iframe",
"menu",
"menu-item"
],
"repository": {
"type": "git",
"url": "https://github.com/voorhoede/datocms-plugin-custom-page.git"
},
"author": "Voorhoede <victor@voorhoede.nl>",
"license": "ISC",
"datoCmsPlugin": {
"title": "Custom page",
"previewImage": "docs/preview.png",
"coverImage": "docs/cover.png",
"entryPoint": "build/index.html"
},
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"react-app",
"prettier"
],
"rules": {
"no-console": [
"error",
{
"allow": [
"warn",
"error"
]
}
],
"prettier/prettier": 1
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}