-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.58 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.58 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
{
"name": "datasets.simula.no",
"private": true,
"scripts": {
"optimize-thumbnails": "node scripts/optimize-thumbnails.mjs",
"prebuild": "node scripts/optimize-thumbnails.mjs",
"predev": "node scripts/optimize-thumbnails.mjs",
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "next experimental-analyze",
"prettier": "prettier --write .",
"lint": "eslint ./src",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test"
},
"dependencies": {
"gray-matter": "^4.0.3",
"markdown-it": "^14.1.1",
"next": "^16.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-icons": "^5.6.0",
"sanitize-html": "^2.17.3",
"zod": "^4.4.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.2.4",
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "^4.2.4",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.1",
"eslint-config-next": "^16.2.4",
"jsdom": "^29.1.1",
"postcss": "^8.5.13",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"serve": "^14.2.6",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.4",
"vitest": "^4.1.5"
}
}