-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
{
"name": "hello.dev",
"version": "2.0.0",
"description": "Hellō is an OpenID Connect Provider that simplifies user registration and login, allowing you to provide all the choices your user's may want in hours instead of days or weeks.",
"scripts": {
"dev": "next dev",
"feed": "./scripts/feed.sh",
"build": "npm run feed && next build",
"postbuild": "next-sitemap",
"start": "next start",
"test": "linkinator ./S3 --config linkinator.config.json",
"pr": "./scripts/pr.sh",
"rebase": "git pull origin main --rebase",
"review": "npm run rebase && npm run build && npm run test && npm run pr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/hello.dev.git"
},
"bugs": {
"url": "https://github.com/hellocoop/hello.dev/issues"
},
"homepage": "https://www.hello.dev/",
"dependencies": {
"next": "^13.0.6",
"next-sitemap": "^4.2.3",
"nextra": "latest",
"nextra-theme-docs": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@types/node": "18.11.10",
"autoprefixer": "^10.4.16",
"linkinator": "^6.0.1",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"typescript": "^4.9.3"
}
}