-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
52 lines (52 loc) · 1.17 KB
/
package.json
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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"test:e2e": "playwright test",
"typecheck": "tsc --noemit",
"lint": "next lint"
},
"dependencies": {
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"marked": "^13.0.1",
"next": "14.x",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"typescript-json-decoder": "^1.0.6",
"unified": "^11.0.5"
},
"devDependencies": {
"@typescript-eslint/parser": "^7.14.1",
"@playwright/test": "^1.45.0",
"@types/jest": "^29.5.12",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/node": "^20.14.9",
"@types/react": "18",
"eslint-config-next": "14.x",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"ts-jest": "^29.1.5",
"typescript": "^5.5.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"quoteProps": "consistent"
},
"eslintConfig": {
"extends": "next/core-web-vitals",
"rules": {
"@next/next/no-img-element": "off"
}
}
}