-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "weekly-reports-tool",
"version": "1.0.8",
"description": "A Next.js app to fetch my companies daily employee run-down and compose it into weekly ones for submitting it to the IHK.",
"homepage": "https://github.com/leodr/weekly-reports-tool#readme",
"bugs": {
"url": "https://github.com/leodr/weekly-reports-tool/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/leodr/weekly-reports-tool.git"
},
"license": "MIT",
"author": {
"name": "Leo Driesch",
"email": "leodr.development@gmail.com",
"url": "https://leodriesch.com/"
},
"scripts": {
"build": "next build",
"check-types": "tsc --noEmit",
"dev": "next dev",
"format": "prettier . --write --ignore-path .gitignore",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"@vercel/analytics": "^0.1.6",
"clipboard": "^2.0.11",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"autoprefixer": "^10.4.13",
"babel-eslint": "^10.1.0",
"eslint": "^8.31.0",
"eslint-config-next": "^13.1.1",
"postcss": "^8.4.21",
"postcss-preset-env": "^7.8.3",
"prettier": "^2.8.2",
"prettier-plugin-packagejson": "^2.3.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=10.13"
}
}