-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "rssfeeds",
"type": "module",
"version": "0.0.1",
"scripts": {
"start": "astro dev",
"build:astro": "astro build",
"build:pagefind": "npx pagefind",
"static:pagefind": "npx shx cp -r dist/pagefind public/",
"build": "npm-run-all -s build:astro build:pagefind static:pagefind",
"serve:pagefind": "npx pagefind --serve",
"dev:astro": "astro dev",
"dev": "npm-run-all -s build:pagefind static:pagefind dev:astro",
"dev:build": "npm-run-all -s build dev",
"preview": "astro preview",
"astro": "astro",
"prepare": "is-ci || husky",
"commitlint": "commitlint --edit",
"genuuid": "node -e \"console.log(require('uuid').v7())\"",
"add-feed": "node --no-warnings=ExperimentalWarning --loader ts-node/esm scripts/addFeed.ts"
},
"dependencies": {
"@astrojs/netlify": "^6.0.0",
"@fontsource-variable/montserrat": "^5.1.0",
"@fontsource-variable/rubik": "^5.1.0",
"@material/web": "^2.2.0",
"@murtuzaalisurti/back-to-top": "^3.0.4",
"@netlify/functions": "^2.8.2",
"astro": "^5.0.3",
"consola": "^3.2.3",
"dayjs": "^1.11.13",
"is-ci": "^3.0.1",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"prompts": "^2.4.2",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@types/prompts": "^2.4.9",
"@types/uuid": "^10.0.0",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"pagefind": "^1.2.0",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"uuid": "^11.0.3"
}
}