-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.24 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "cyprusjs",
"version": "2.0.0",
"private": true,
"description": "CyprusJS Official Website",
"homepage": "https://cyprusjs.org/",
"bugs": {
"url": "https://github.com/cyprusjs/cyprusjs.org/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/cyprusjs/cyprusjs.org"
},
"license": "MIT",
"author": "CyprusJS",
"contributors": [
{
"name": "Patrick Heneise",
"email": "[email protected]",
"url": "https://zentered.co"
},
{
"name": "Jonas Broms",
"email": "[email protected]",
"url": "https://twitter.com/jonasbroms"
}
],
"scripts": {
"build": "next build",
"postbuild": "next-sitemap",
"dev": "next dev",
"export": "next export",
"lint": "eslint --fix . --ext .js --ext .jsx --ext md --ext mdx",
"prepare": "husky install",
"pretty": "prettier --write \"{pages,content}/**/*.{js,jsx,md,mdx,css,scss}\"",
"start": "next start"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"next": "13.5.4",
"next-seo": "^5.5.0",
"next-sitemap": "^3.1.22",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.3",
"remark-gfm": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@netlify/plugin-nextjs": "^4.23.1",
"eslint": "8.23.1",
"eslint-config-next": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.31.8",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"windicss-webpack-plugin": "^1.7.6"
},
"engines": {
"node": "^16",
"npm": "^7"
}
}