-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.27 KB
/
package.json
File metadata and controls
100 lines (100 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
97
98
99
100
{
"name": "schdesign-web",
"version": "2.2.0",
"private": true,
"description": "Website of schdesign",
"scripts": {
"build": "next build",
"build:analyze": "cross-env ANALYZE=true npm run build",
"clean": "git clean --interactive -dx --exclude .env.local --exclude .env.*.local --exclude node_modules/ --exclude .husky/",
"dev": "next dev",
"fix": "run-s fix:*",
"fix:eslint": "eslint --fix --ignore-path .eslintignore .",
"fix:prettier": "prettier --write .",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .ts,.tsx,.js,.jsx,.json --ignore-path .eslintignore .",
"lint:prettier": "prettier --check .",
"lint:typescript": "tsc",
"prepare": "husky install",
"start": "next start",
"typegen": "dotenv -e .env.local -- cross-var cf-content-types-generator -s %CONTENTFUL_SPACE_ID% -t %CONTENTFUL_MANAGEMENT_TOKEN% -o src/@types/generated -r -X"
},
"nano-staged": {
"*": "prettier --write --ignore-unknown .",
"*.{ts,tsx,js,jsx}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonyiszk/schdesign-web.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/simonyiszk/schdesign-web/issues"
},
"homepage": "https://schdesign.hu",
"dependencies": {
"@contentful/rich-text-react-renderer": "^16.0.1",
"@contentful/rich-text-types": "^17.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@mui/lab": "6.0.0-beta.20",
"@mui/material": "^6.2.1",
"@next/mdx": "^15.1.2",
"clsx": "2.1.1",
"contentful": "^11.3.3",
"contentful-management": "^11.40.2",
"focus-visible": "5.2.1",
"next": "15.1.11",
"next-mdx-remote": "^5.0.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.4.0",
"react-spring-lightbox": "^1.8.0",
"sass": "^1.83.0"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tsconfig/next": "1.0.5",
"@types/node": "18.14.2",
"@types/react": "19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"autoprefixer": "^10.4.20",
"cf-content-types-generator": "^2.15.5",
"cross-env": "7.0.3",
"cross-var": "^1.1.0",
"dotenv": "^16.4.7",
"dotenv-cli": "^8.0.0",
"eslint": "8.35.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-next": "13.5.5",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-etc": "2.0.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-tailwindcss": "^3.9.0",
"husky": "8.0.3",
"nano-staged": "0.8.0",
"npm-run-all": "4.1.5",
"postcss": "^8.4.49",
"postcss-import": "16.1.0",
"postcss-preset-env": "10.1.2",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.17",
"typescript": "5.7.2"
},
"pnpm": {
"patchedDependencies": {
"react-icons@5.4.0": "patches/react-icons@5.4.0.patch"
}
}
}