-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.14 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "web-waffle",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage",
"sync:music": "node --experimental-strip-types --disable-warning=ExperimentalWarning --env-file-if-exists=.env.local scripts/sync-music.ts",
"guestbook:setup": "node --experimental-strip-types --disable-warning=ExperimentalWarning --env-file-if-exists=.env.local scripts/guestbook-setup.ts",
"guestbook:moderate": "node --experimental-strip-types --disable-warning=ExperimentalWarning --env-file-if-exists=.env.local scripts/guestbook-moderate.ts"
},
"dependencies": {
"@neondatabase/serverless": "^1.1.0",
"@vercel/analytics": "^2.0.1",
"d3": "^7.9.0",
"gray-matter": "^4.0.3",
"next": "^16.2.12",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"simple-icons": "^16.27.1"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/d3": "^7.4.3",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.0.0",
"eslint": "^10.6.0",
"eslint-config-next": "^16.2.12",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"ts-jest": "^29.4.12",
"typescript": "7.0.2"
},
"overrides": {
"postcss": "^8.5.10",
"sharp": "^0.35.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"@testing-library/jest-dom"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1",
"\\.module\\.css$": "<rootDir>/__mocks__/styleMock.js"
},
"testPathPattern": "\\.(test|spec)\\.(ts|tsx)$",
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": {
"jsx": "react-jsx",
"rootDir": "."
}
}
]
}
}
}