-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.21 KB
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
{
"name": "horseman-article-parser-ui",
"version": "0.3.7",
"description": "Web Page Inspection Tool UI. Google SERP Preview, Sentiment Analysis, Keyword Extraction, Named Entity Recognition & Spell Check",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development node index.js",
"build": "next build public",
"start": "cross-env NODE_ENV=production node index.js",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fmacpro/horseman-article-parser-ui.git"
},
"author": "Frank MacDonald",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/fmacpro/horseman-article-parser-ui/issues"
},
"homepage": "https://github.com/fmacpro/horseman-article-parser-ui#readme",
"dependencies": {
"express": "^4.15.3",
"horseman-article-parser": "^1.2.5",
"next": "^15.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^15.5.4",
"cross-env": "^7.0.3",
"eslint": "^9.34.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.21.3",
"eslint-plugin-promise": "^7.2.1"
}
}