-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.7 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.7 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": "codeurs-en-seine-website",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx only-allow npm",
"postinstall": "npm run build:content",
"clean": "rm -rf .contentlayer .next node_modules",
"dev": "npm run clean && npm i && run-p dev:*",
"dev:next": "next dev",
"dev:content": "contentlayer2 dev",
"build": "run-s build:content build:next",
"build:tools": "tsc --project _tools/tsconfig.json",
"build:next": "next build",
"build:content": "contentlayer2 build || exit 0",
"build:archive": "rm -rf public-archive/archive-$NEXT_PUBLIC_ARCHIVE_YEAR && npm run build && mv out/ public-archive/archive-$NEXT_PUBLIC_ARCHIVE_YEAR",
"start": "next start",
"start:archive": "npx http-serve ./public-archive",
"lint": "next lint && tsc --noEmit",
"pretty": "prettier -w ."
},
"dependencies": {
"@chakra-ui/react": "^2.10.7",
"@fontsource/lato": "5.2.5",
"@fontsource/montserrat": "5.2.5",
"@icons-pack/react-simple-icons": "^13.8.0",
"@mdx-js/react": "2.3.0",
"@types/glob": "8.1.0",
"contentlayer2": "^0.4.6",
"date-fns": "4.1.0",
"eslint": "9.26.0",
"eslint-config-next": "15.3.2",
"glob": "11.0.2",
"next": "^14.2.28",
"next-contentlayer2": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.12.0",
"remarkable": "2.0.1",
"sharp": "0.34.1",
"simple-icons": "^15.17.0",
"slugify": "1.6.6",
"typescript": "5.8.3",
"zod": "3.24.4"
},
"devDependencies": {
"@types/node": "22.15.14",
"@types/react": "19.1.3",
"@types/react-dom": "19.1.3",
"@types/remarkable": "2.0.8",
"npm-run-all": "4.1.5",
"prettier": "3.5.3"
}
}