-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "podsite",
"version": "1.0.0",
"description": "Modern podcast website with Next.js static export",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run validate:episodes && npm run generate:index && next build && next export",
"generate:index": "node scripts/generateEpisodesIndex.js",
"preview": "npx serve out --listen 5000",
"lint": "eslint . --ext .js,.jsx && prettier --check .",
"lint:fix": "eslint . --ext .js,.jsx --fix && prettier --write .",
"test": "jest",
"validate:episodes": "node scripts/validateEpisodes.js"
},
"dependencies": {
"next": "^15.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"gray-matter": "^4.0.3",
"remark": "^15.0.0",
"remark-html": "^15.0.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"eslint-config-next": "^15.0.0",
"prettier": "^3.0.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"axe-core": "^4.8.0",
"js-yaml": "^4.1.0",
"ajv": "^8.12.0",
"serve": "^14.0.0"
}
}