-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.73 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": "@sergeymyssak/nextjs-sitemap",
"version": "2.0.3",
"description": "Generate dynamic sitemap.xml for Next.js project!",
"main": "dist/SitemapGenerator.js",
"types": "dist/SitemapGenerator.d.ts",
"scripts": {
"lint": "eslint '*src/**/*.{js,ts}' --quiet --fix",
"start": "tsc && yarn lint"
},
"keywords": [
"next.js",
"nextjs",
"sitemap",
"sitemap.xml",
"sitemap-xml",
"sitemap-generator",
"sitemap-builder",
"sitemap-generation"
],
"author": {
"name": "Sergey Myssak",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/sergeymyssak/"
},
"contributors": [
{
"name": "Andrey Myssak",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/andreymyssak/"
}
],
"repository": {
"url": "https://github.com/SergeyMyssak/nextjs-sitemap.git",
"type": "git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"homepage": "https://github.com/SergeyMyssak/nextjs-sitemap",
"bugs": "https://github.com/SergeyMyssak/nextjs-sitemap/issues",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn lint"
}
},
"dependencies": {
"date-fns": "^2.15.0"
},
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/eslint": "^7.2.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^14.0.24",
"@types/prettier": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
}
}