This repository has been archived by the owner on Nov 18, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.57 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
{
"name": "@nordcom/nextjs-starter",
"version": "0.0.1",
"description": "Starter template for Next.js 13 projects wanting to use the battle-tested pages router.",
"type": "module",
"cacheDirectories": [
".next/cache"
],
"prettier": "@nordcom/prettier",
"scripts": {
"start": "next start -p $PORT",
"dev": "next dev",
"build": "next build",
"postbuild": "npm run sitemap",
"sitemap": "next-sitemap",
"postsitemap": "for i in public/*.xml; do cat $i | pretty-xml | tee $i > /dev/null; done",
"lint": "npm-run-all --parallel lint:*",
"lint:next": "next lint",
"lint:prettier": "prettier src/**/*.* --check",
"lint:types": "tsc --project tsconfig.json -noEmit",
"test": "npm-run-all --parallel test:*",
"test:jest": "jest --coverage --passWithNoTests",
"prepare": "husky install"
},
"author": {
"name": "Nordcom Group Inc.",
"email": "[email protected]",
"url": "https://nordcom.io/"
},
"contributors": [
{
"name": "Filiph Siitam Sandström",
"email": "[email protected]",
"url": "https://github.com/filiphsps/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/NordcomInc/nextjs-starter.git"
},
"keywords": [
"nextjs",
"nextjs-starter",
"template",
"react"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/NordcomInc/nextjs-starter/issues"
},
"homepage": "https://github.com/NordcomInc/nextjs-starter#readme",
"browserslist": [
">0.3%",
"defaults",
"supports es6-module",
"supports css-grid"
],
"devDependencies": {
"@nordcom/prettier": "0.1.1",
"@types/node": "20.9.1",
"@types/react": "18.2.37",
"eslint": "8.54.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "9.0.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.1.0",
"next-sitemap": "4.2.3",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"pretty-xml": "1.2.1"
},
"dependencies": {
"@emotion/is-prop-valid": "1.2.1",
"destyle.css": "4.0.0",
"next": "14.0.3",
"next-seo": "6.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "1.69.5",
"sharp": "0.32.6",
"styled-components": "6.1.1",
"typescript": "5.2.2"
}
}