-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "frontend-kompendium",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"format": "prettier --write \"**/*.+(js|ts|tsx|json|sass|scss|md)\""
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"firebase": "^9.18.0",
"next": "^13.1.6",
"next-seo": "^5.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^8.31.1",
"react-syntax-highlighter": "^15.4.3",
"sass": "^1.35.0"
},
"devDependencies": {
"@types/node": "^14.14.32",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"autoprefixer": "^10.3.1",
"eslint": "^7.28.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gray-matter": "^4.0.3",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"react-markdown": "^5.0.3",
"tailwindcss": "^2.0.3",
"typescript": "^4.3.2"
}
}