-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.27 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.27 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "1ilsang.dev",
"packageManager": "pnpm@10.10.0",
"private": true,
"version": "0.0.0",
"author": "1ilsang <1ilsang@naver.com>",
"description": "https://1ilsang.dev",
"license": "MIT",
"type": "module",
"scripts": {
"predev": "node --experimental-strip-types ./scripts/pre-scripts.ts",
"dev": "next dev",
"build": "pnpm predev && next build",
"start": "next start",
"lint:stylelint": "stylelint --config './.stylelintrc.cjs' './src/**/*.css'",
"lint:prettier": "prettier --check './src/**/*.{json,html,yml,tsx,ts,js,jsx,css}' './_posts/**/*.{mdx,md}'",
"lint:eslint": "eslint",
"lint:markdown": "markdownlint --config './.markdownlint.cjs' './_posts/**/*.mdx'",
"lint:typeCheck": "tsc --pretty",
"lint": "pnpm run '/^lint:.*/'",
"e2e:build": "pnpm predev && NEXT_PUBLIC_E2E=true next build",
"e2e:update:screen": "pnpm playwright test --grep '@screen-snapshot' --update-snapshots",
"e2e:update:dom": "pnpm playwright test --grep '@dom-snapshot' --update-snapshots",
"e2e:update": "pnpm playwright test --update-snapshots",
"e2e:report": "pnpm exec playwright show-report",
"e2e:install": "pnpm exec playwright install --with-deps",
"e2e:others": "pnpm playwright test --grep-invert /@/",
"e2e:dom": "pnpm playwright test --grep '@dom-snapshot'",
"e2e:screen": "pnpm playwright test --grep '@screen-snapshot'",
"e2e": "pnpm playwright test",
"jest:watch": "jest --watch",
"jest": "jest",
"clean": "rm -rf .next out node_modules test-results",
"knip": "pnpm dlx knip",
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@next/third-parties": "^15.2.2",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"classnames": "^2.5.1",
"jotai": "^2.9.0",
"next": "15.2.8",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.4",
"@playwright/test": "^1.45.1",
"@tailwindcss/postcss": "^4.0.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/mdx": "^2.0.13",
"@types/node": "22.15.17",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.1.1",
"estree-util-value-to-estree": "^3.2.1",
"github-slugger": "^2.0.0",
"husky": "9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"markdownlint": "0.38.0",
"markdownlint-cli": "0.45.0",
"postcss": "^8.4.39",
"prettier": "3.5.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"remark-rehype": "^11.1.0",
"stylelint": "^16.7.0",
"tailwindcss": "4.1.11",
"ts-node": "^10.9.2",
"typescript": "5.8.3",
"typescript-eslint": "^8.0.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@vercel/speed-insights",
"sharp"
]
}
}