-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
{
"name": "tip-of-the-day",
"description": "Get your daily knowledge dose",
"version": "1.0.0",
"author": "Darek Kay <[email protected]> (https://darekkay.com/)",
"dependencies": {
"@darekkay/logger": "3.0.3",
"@darekkay/styles": "5.0.2",
"@umpirsky/currency-list": "git+https://[email protected]/umpirsky/currency-list.git",
"axios": "1.6.0",
"country-json": "1.1.4",
"ejs": "3.1.9",
"feed": "4.2.2",
"fs-extra": "11.1.1",
"jsdom": "22.1.0",
"lodash": "4.17.21",
"markdown-it": "13.0.2",
"moment": "2.29.4",
"shuffle-seed": "1.1.6",
"world-countries": "4.0.0"
},
"devDependencies": {
"@darekkay/gulp": "3.0.1",
"@darekkay/scripts": "2.6.2",
"plop": "3.1.2",
"xml-js": "1.6.11"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://tips.darekkay.com",
"keywords": [
"daily tip",
"feed",
"news",
"rss",
"tips"
],
"license": "MIT",
"main": "src/index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/darekkay/tip-of-the-day.git"
},
"scripts": {
"build": "npm run build:index && npm run build:feeds",
"build:feeds": "node src/index.js",
"build:index": "gulp build",
"ci": "dks ci",
"format": "dks format",
"generate": "plop --plopfile internals/generators/index.js",
"lint": "dks lint",
"preview": "node internals/preview.js",
"test": "dks test"
}
}