-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.82 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
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
{
"name": "1ilsang.dev",
"packageManager": "[email protected]",
"private": true,
"version": "0.0.0",
"author": "1ilsang <[email protected]>",
"description": "https://1ilsang.dev",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:stylelint": "stylelint --config './.stylelintrc.cjs' './src/**/*.scss'",
"lint:prettier": "prettier --check './src/**/*.{json,html,yml,tsx,ts,js,jsx,scss}'",
"lint:eslint": "eslint",
"lint:markdown": "markdownlint --config './.markdownlint.cjs' './_posts/**/*.{md,mdx}'",
"lint:typeCheck": "tsc --pretty",
"lint": "pnpm run '/^lint:.*/'",
"e2e:build": "NEXT_PUBLIC_E2E=true next build",
"e2e:update:screen": "pnpm playwright test --grep '@screen-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",
"coverage": "jest --coverage",
"jest:watch": "jest --watch",
"jest": "jest",
"clean": "rm -rf .next out node_modules",
"knip": "pnpm dlx knip",
"nf": "netlify",
"prepare": "husky",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"classnames": "^2.5.1",
"gray-matter": "4.0.3",
"jotai": "^2.9.0",
"next": "14.2.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-html": "16.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@playwright/test": "^1.45.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/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "20.16.5",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"husky": "9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"markdownlint": "0.35.0",
"markdownlint-cli": "0.41.0",
"netlify-cli": "^17.33.3",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"sass": "1.78.0",
"stylelint": "^16.7.0",
"stylelint-config-standard-scss": "^13.1.0",
"tailwindcss": "3.4.10",
"typescript": "5.5.4",
"typescript-eslint": "^8.0.1"
}
}