This repository has been archived by the owner on Sep 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.46 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
{
"name": "@rowanmanning/audrey",
"version": "2.0.0-beta.18",
"private": true,
"description": "A simple single-user feed reader",
"keywords": [
"atom",
"feed",
"reader",
"rss"
],
"author": "Rowan Manning (https://rowanmanning.com/)",
"repository": {
"type": "git",
"url": "https://github.com/rowanmanning/audrey.git"
},
"homepage": "https://github.com/rowanmanning/audrey",
"bugs": "https://github.com/rowanmanning/audrey/issues",
"license": "GPL-3.0",
"engines": {
"node": "16.x || 18.x",
"npm": "8.x || 9.x",
"mongodb": "4 || 5"
},
"scripts": {
"start": "node .",
"start:dev": "nodemon . | pino-pretty",
"build": "npm run build:css",
"watch": "npm run watch:css",
"build:css": "sass client/sass/main.scss:client/public/main.css --style=compressed",
"watch:css": "sass client/sass/main.scss:client/public/main.css --style=compressed --watch",
"verify": "eslint .",
"test": "npm run test:integration",
"test:integration": "mocha 'test/integration/**/*.test.js'",
"test:feeds": "mocha 'test/feeds/**/*.test.js' --timeout 50000 --slow 10000",
"project:verify": "npx --yes @rowanmanning/validate-project --type git node-express-app",
"project:fix": "npx --yes @rowanmanning/validate-project --type git node-express-app --fix"
},
"dependencies": {
"@rowanmanning/express-config": "^3.0.3",
"@rowanmanning/fetch-feed": "^3.0.1",
"@rowanmanning/require-all": "^3.0.1",
"@rowanmanning/response-redirect-middleware": "^3.0.1",
"@rowanmanning/response-render-middleware": "^3.0.1",
"bcrypt": "^5.1.0",
"connect-mongo": "^4.6.0",
"date-fns": "^2.30.0",
"dompurify": "^3.0.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"got": "^11.8.6",
"jsdom": "^22.1.0",
"mongodb": "^4.17.1",
"mongoose": "^7.4.0",
"nanoid": "^3.3.6",
"netscape-bookmarks": "^0.1.1",
"node-schedule": "^2.1.1",
"preact": "^10.15.1",
"srcset": "^4.0.0",
"varname": "^5.0.1"
},
"devDependencies": {
"@rowanmanning/eslint-config": "^7.0.0",
"chai": "^4.3.7",
"eslint": "^8.43.0",
"mocha": "^10.2.0",
"nock": "^13.3.1",
"nodemon": "^2.0.22",
"pino-pretty": "^10.0.0",
"sass": "^1.66.1",
"testdouble": "^3.18.0"
},
"mocha": {
"timeout": 20000
},
"nyc": {
"include": [
"server/**/*.js",
"server/**/*.jsx"
]
},
"nodemonConfig": {
"ext": "js,jsx",
"ignore": [
"test/*"
]
}
}