-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"name": "dailyweb",
"version": "1.0.0",
"description": "Daily curated web dev news",
"type": "module",
"packageManager": "pnpm@10.30.3",
"scripts": {
"dev": "vitepress dev .",
"build": "vitepress build .",
"preview": "vitepress preview .",
"prepare": "husky",
"lint": "eslint . && prettier . --check",
"fix": "pnpm eslint --fix && prettier . --write",
"build:incremental": "node --strip-types tools/incrementalBuild.ts",
"fetch-news": "node --env-file=.env --strip-types tools/fetch-news.ts",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@frsource/autoresize-textarea": "^2.0.188",
"@storefront-ui/tw-plugin-peer-next": "^3.1.0",
"vitepress": "2.0.0-alpha.16",
"vue": "^3.5.27"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@frsource/eslint-config": "^1.73.0",
"@frsource/prettier-config": "^1.41.0",
"@google/generative-ai": "^0.24.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.8",
"@types/node": "^25.3.5",
"cheerio": "^1.2.0",
"eslint": "^10.0.3",
"feed": "^4.2.2",
"globals": "^17.4.0",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"rss-parser": "^3.13.0",
"tailwindcss": "^4.1.8",
"typescript": "^5.9.3"
},
"author": "Jakub Freisler",
"repository": "https://github.com/FRSOURCE/dailyweb.git",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}