-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.81 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.81 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
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
{
"name": "service-stem",
"version": "2.0.0",
"description": "A service to generate text content based on markup",
"main": "src/index.js",
"engines": {
"node": ">=22"
},
"dependencies": {
"@airbrake/node": "^2.1.9",
"body-parser": "^2.2.0",
"cheerio": "^1.1.2",
"cross-fetch": "^4.1.0",
"dotenv": "^17.2.1",
"ejs": "^3.1.10",
"express": "^5.1.0",
"fast-xml-parser": "^5.3.6",
"he": "^1.2.0",
"jquery": "^3.7.1",
"jsdom": "^26.1.0",
"mathjax-full": "^3.2.2",
"mathml-to-asciimath": "^1.4.0",
"mathml-to-latex": "^1.5.0",
"pino-papertrail": "^2.1.0",
"tough-cookie": "^5.1.2",
"x2js": "^3.4.4",
"xml": "^1.0.1"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/jest": "^30.0.0",
"complexity-report": "2.0.0-alpha",
"eslint": "^9.32.0",
"eslint-scope": "^8.4.0",
"espree": "^10.4.0",
"globals": "^16.3.0",
"jest": "^30.0.5",
"nodemon": "^3.1.10",
"supertest": "^7.1.4"
},
"scripts": {
"dev": "nodemon src/index.js",
"build": "docker build -t service-stem .",
"start": "node src/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ci": "pnpm run lint && pnpm run test:coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nlbdev/service-database.git"
},
"author": "NLBDEV",
"license": "MIT",
"bugs": {
"url": "https://github.com/nlbdev/service-database/issues"
},
"homepage": "https://github.com/nlbdev/service-database#readme",
"packageManager": "pnpm@10.13.1",
"pnpm": {
"overrides": {
"glob": "10.5.0",
"minimatch": "9.0.7",
"tar": "7.5.11",
"test-exclude": "8.0.0",
"trim": ">=0.0.3"
}
}
}