forked from datocms/plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 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
{
"name": "datocms-plugin-table-editor",
"description": "A table editor that outputs JSON objects",
"homepage": "https://github.com/datocms/plugins/tree/master/table-editor#readme",
"version": "0.1.8",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.16",
"@types/node": "^16.11.20",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"classnames": "^2.3.1",
"datocms-plugin-sdk": "^0.5.1",
"datocms-react-ui": "^0.5.1",
"dequal": "^2.0.2",
"fast-deep-equal": "^3.1.3",
"lodash-es": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.0",
"react-table": "^7.7.0",
"react-textarea-autosize": "^8.3.3",
"typescript": "^4.5.4",
"use-deep-compare": "^1.1.0"
},
"keywords": [
"datocms",
"datocms-plugin"
],
"files": [
"build",
"docs"
],
"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"
]
},
"devDependencies": {
"@types/lodash-es": "^4.17.5",
"@types/react-table": "^7.7.9",
"cross-env": "^7.0.3"
},
"datoCmsPlugin": {
"title": "Table Editor",
"previewImage": "docs/demo.mp4",
"coverImage": "docs/cover.png",
"entryPoint": "build/index.html"
}
}