-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
{
"name": "code-image-generator",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"codequality": "pnpm format && pnpm lint && pnpm typecheck",
"codequality:fix": "pnpm format:fix && pnpm lint:fix && pnpm typecheck",
"dev": "next dev --turbopack",
"format": "prettier --check --ignore-unknown .",
"format:fix": "prettier --write --ignore-unknown .",
"lint": "next lint --max-warnings 0",
"lint:fix": "next lint --fix --max-warnings 0",
"prepare": "husky",
"start": "next start",
"typecheck": "tsc",
"unused": "knip",
"updates": "npm-check-updates -i"
},
"dependencies": {
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.3",
"@uiw/codemirror-extensions-langs": "4.19.8",
"@uiw/codemirror-themes-all": "4.19.8",
"@uiw/react-codemirror": "4.19.8",
"@zag-js/focus-visible": "^0.78.3",
"file-saver": "^2.0.5",
"html2canvas": "^1.4.1",
"next": "15.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"react-select": "^5.9.0",
"react-toastify": "^10.0.6",
"tailwind-merge": "^2.5.5"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@types/node": "^22.10.2",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-unicorn": "^56.0.1",
"husky": "^9.1.7",
"knip": "^5.40.0",
"lint-staged": "^15.2.11",
"npm-check-updates": "^17.1.11",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"packageManager": "pnpm@9.15.0"
}