forked from WATonomous/status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.56 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
63
64
65
66
67
{
"name": "healthchecks-front",
"version": "0.1.0",
"description": "Beautiful dashboard to use with Healthchecks.io.",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "npm run build && next export",
"lint": "next lint",
"format": "prettier --write .",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicoandrade/healthchecks-front.git"
},
"keywords": [
"tailwindcss",
"nextjs",
"healthchecks",
"cronjobs",
"crontab",
"checks"
],
"author": "nicoandrade",
"license": "MIT",
"bugs": {
"url": "https://github.com/nicoandrade/healthchecks-front/issues"
},
"homepage": "https://github.com/nicoandrade/healthchecks-front#readme",
"dependencies": {
"@heroicons/react": "^1.0.1",
"bootstrap": "^5.1.3",
"flowbite": "^1.3.4",
"moment": "^2.29.2",
"next": "12.1.0",
"react": "17.0.2",
"react-bootstrap": "^2.1.2",
"react-dom": "17.0.2",
"react-markdown": "^8.0.1",
"react-syntax-highlighter": "^15.5.0",
"swr": "^0.5.6"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"eslint": "7.28.0",
"eslint-config-next": "11.0.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"postcss": "^8.3.5",
"prettier": "2.6.0",
"tailwindcss": "^2.2.2"
}
}