-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "rsscloud-server",
"version": "2.0.0",
"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",
"jshint": "jshint ./**/*.js",
"eslint": "eslint --fix controllers/ services/ test/",
"test": "mocha",
"test-api": "docker-compose up --build --abort-on-container-exit"
},
"engines": {
"node": ">=10.6.0"
},
"author": "Andrew Shell <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"console-stamp": "^3.0.3",
"cors": "^2.8.5",
"davexmlrpc": "^0.4.26",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.3",
"express-ws": "^5.0.2",
"markdown-it": "^12.2.0",
"moment": "^2.29.1",
"mongodb": "4.1.0",
"morgan": "^1.10.0",
"nconf": "^0.11.3",
"request": "^2.88.0",
"request-promise-native": "1.0.8",
"sprintf-js": "^1.1.2",
"xml2js": "^0.4.23",
"xmlbuilder": "^15.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/andrewshell/rsscloud-server.git"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"chai-json": "^1.0.0",
"chai-xml": "^0.4.0",
"eslint": "^7.32.0",
"eslint-config-crockford": "^2.0.0",
"https": "^1.0.0",
"jshint": "^2.13.1",
"mocha": "^9.1.0",
"mocha-multi": "^1.1.3",
"nodemon": "2.0.12",
"supertest": "^6.1.6"
}
}