This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
74 lines (74 loc) · 1.8 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
68
69
70
71
72
73
74
{
"name": "acikkaynak-website",
"private": false,
"description": "açık-kaynak.org web site",
"keywords": [
"acik",
"kaynak",
"web",
"site"
],
"version": "0.11.0",
"homepage": "https://acik-kaynak.org",
"author": "açık-kaynak.org <[email protected]>",
"contributors": [
{
"name": "Eser Ozvataf",
"email": "[email protected]",
"url": "https://eser.ozvataf.com/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/acikkaynak/acikkaynak-website.git"
},
"bugs": {
"url": "https://github.com/acikkaynak/acikkaynak-website/issues"
},
"license": "Apache-2.0",
"main": "index.ts",
"type": "module",
"scripts": {
"cleanup": "rm -rf yarn.lock package-lock.json node_modules/ .next/",
"build": "next build",
"dev": "next dev",
"export": "next build && next export",
"lint": "next lint",
"adr": "adr-tool",
"prepare": "husky install",
"http:preview": "cd out && http-server"
},
"dependencies": {
"@heroicons/react": "^2.0.10",
"contentlayer": "^0.2.7",
"fetchp": "^0.0.34",
"graphql.js": "^0.6.8",
"markdown-wasm": "^1.2.0",
"next": "12.2.5",
"next-contentlayer": "^0.2.7",
"next-seo": "^5.5.0",
"next-themes": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.7",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"adr-tool": "^0.3.0",
"autoprefixer": "^10.4.8",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"husky": "^8.0.1",
"next-transpile-modules": "^9.0.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"typescript": "4.8.2"
},
"husky": {
"hooks": {
"pre-commit": "next lint",
"pre-push": "next lint"
}
}
}