-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.5 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
{
"name": "rsscloud-server",
"version": "2.2.1",
"description": "An rssCloud Server",
"main": "app.js",
"scripts": {
"start": "nodemon --use_strict ./app.js",
"client": "nodemon --use_strict ./client.js",
"import-data": "node ./bin/import-data.js",
"lint": "eslint --fix controllers/ services/ test/ *.js",
"format": "prettier --write .",
"test": "mocha",
"test-api": "docker-compose up --build --abort-on-container-exit --attach rsscloud-tests --no-log-prefix",
"prepare": "husky"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.11.0",
"author": "Andrew Shell <andrew@andrewshell.org>",
"license": "MIT",
"dependencies": {
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"express-handlebars": "^5.3.3",
"markdown-it": "^14.1.0",
"mongodb": "6.17.0",
"morgan": "^1.10.0",
"ws": "^8.18.3",
"xml2js": "^0.6.2",
"xmlbuilder": "^15.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/andrewshell/rsscloud-server.git"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"chai-json": "^1.0.0",
"chai-xml": "^0.4.1",
"eslint": "^9.29.0",
"https": "^1.0.0",
"husky": "^9.1.7",
"mocha": "^11.7.1",
"mocha-multi": "^1.1.7",
"nodemon": "3.1.10",
"prettier": "^3.6.1",
"supertest": "^7.1.1"
}
}