-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.85 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.85 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
{
"dependencies": {
"@radix-ui/react-avatar": "~1.1.10",
"classnames": "~2.5.1",
"next": "15.5.2",
"next-mdx-remote": "~5.0.0",
"next-rspack": "^15.5.2",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"description": "A showcase website for the `nodejs-loader` project",
"devDependencies": {
"@biomejs/biome": "~2.2.2",
"@happy-dom/global-registrator": "^19.0.2",
"@nodejs-loaders/alias": "2.1.2",
"@nodejs-loaders/tsx": "1.1.2",
"@tailwindcss/postcss": "^4.1.12",
"@testing-library/react": "~16.3.0",
"@types/node": "~22.18.0",
"@types/react": "~19.1.8",
"@types/react-dom": "~19.1.6",
"geist": "~1.4.2",
"postcss": "~8.5.6",
"serve": "~14.2.4",
"tailwindcss": "^4.1.12",
"typescript": "~5.9.2"
},
"license": "MIT",
"name": "@nodejs-loaders/nodejs-loaders.github.io",
"scripts": {
"biome:ci": "biome ci ./",
"biome:format": "biome format ./",
"biome:format:fix": "biome format --fix ./",
"biome:lint": "biome lint ./",
"biome:lint:fix": "biome lint --fix ./",
"build": "next build",
"dev": "next dev",
"pre-commit": "node --run biome:lint:fix; node --run biome:format:fix",
"preview": "node --run build && serve out",
"test:unit": "node --import \"./registers/react.ts\" --test **/*.test.ts **/*.test.tsx",
"test:unit-coverage": "node --import \"./registers/react.ts\" --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=./coverage.lcov --test-reporter=spec --test-reporter-destination=stdout **/*.test.ts **/*.test.tsx",
"test:unit-snapshots": "node --import \"./registers/react.ts\" --test --test-update-snapshots **/*.test.ts **/*.test.tsx",
"test:unit-watch": "node --import \"./registers/react.ts\" --test --watch **/*.test.ts **/*.test.tsx ",
"types:check": "tsc --noEmit"
},
"type": "module"
}