-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 2.45 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
{
"name": "datocms-plugin-word-counter",
"homepage": "https://github.com/voorhoede/datocms-plugin-word-counter",
"version": "1.6.0",
"description": "A plugin for DatoCMS that gives info for text and string fields about word count",
"engines": {
"node": ">=18.0.0"
},
"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",
"prettier": "prettier --write .",
"pre-commit": "npm run prettier",
"prepack": "npm run build",
"prepare": "husky install",
"postversion": "git push --follow-tags"
},
"dependencies": {
"@types/lodash": "^4.14.197",
"@types/node": "^20.4.9",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"datocms-plugin-sdk": "^0.7.14",
"datocms-react-ui": "^0.7.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.1",
"react-scripts": "^5.0.1"
},
"files": [
"build",
"docs"
],
"keywords": [
"datocms",
"datocms-plugin",
"field-addon",
"string",
"text",
"structured-text",
"word",
"character",
"sentences",
"paragraphs",
"word-counter",
"character-counter",
"sentences-counter",
"paragraphs-counter",
"reading-time",
"common-words",
"word-stats",
"statistics",
"stats"
],
"repository": {
"type": "git",
"url": "https://github.com/voorhoede/datocms-plugin-word-counter.git"
},
"author": "Voorhoede",
"license": "ISC",
"datoCmsPlugin": {
"title": "Word counter",
"previewImage": "docs/preview.mp4",
"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"
]
}
}