-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 957 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 957 Bytes
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
{
"name": "mathis-burger.de",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.35",
"@fortawesome/free-solid-svg-icons": "5.15.3",
"@fortawesome/react-fontawesome": "0.1.14",
"framer-motion": "^12.23.24",
"lucide-react": "^0.553.0",
"next": "14.1.0",
"nextjs-short-url": "^1.0.1",
"react": "^18",
"react-dom": "^18",
"react-router-dom": "^6.22.2",
"sass": "^1.53.0",
"typescript-cookie": "^1.0.6"
},
"devDependencies": {
"@types/node": "^17.0.5",
"@types/react": "^17.0.38",
"eslint": "8.18.0",
"eslint-config-next": "12.2.0",
"prettier": "^2.7.1",
"typescript": "^4.5.4"
}
}