-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
79 lines (79 loc) · 2.45 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
{
"name": "nextjs-static-starter-kit",
"version": "1.3.7",
"description": "NextJS Boilerplate with static export",
"main": "server.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build",
"postexport": "node utils/post-export.js",
"type-check": "tsc",
"format:write": "prettier \"**/*.{tsx,js,json,md,css}\" --write",
"format:test": "prettier \"**/*.{tsx,js,json,md,css}\" --list-different",
"lint": "eslint --fix . && echo 'Lint complete.'",
"release": "standard-version && git push --follow-tags origin master",
"populate:contentful": "contentful space migration --space-id <SPACE_KEY> utils/contentful.js --yes",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techhiveIO/nextjs-static-boilerplate.git"
},
"keywords": [
"nextjs",
"javascript",
"jam",
"jam-stack",
"boilerplate",
"contentful",
"netlify",
"typescript"
],
"author": {
"name": "Abdul Rahman Zantout",
"email": "[email protected]"
},
"license": "CHECK LICENSE UNDER LICENSE.md",
"bugs": {
"url": "https://github.com/abedzantout/nextjs-static-boilerplate/issues"
},
"homepage": "https://github.com/abedzantout/nextjs-static-boilerplate#readme",
"pre-commit": "pretty-quick --staged",
"dependencies": {
"contentful": "~10.6.15",
"dotenv": "~16.3.1",
"dotenv-webpack": "^8.0.1",
"eslint-config-next": "^14.0.4",
"eslint-plugin-prettier": "~5.1.2",
"express": "~4.18.2",
"isomorphic-unfetch": "~4.0.2",
"next": "~14.0.4",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-markdown": "~9.0.1",
"sass": "^1.69.6",
"serve": "~14.2.1"
},
"devDependencies": {
"@types/node": "~20.10.6",
"@types/react": "~18.2.46",
"@types/react-dom": "~18.2.18",
"@typescript-eslint/eslint-plugin": "~6.17.0",
"@typescript-eslint/parser": "~6.17.0",
"all-contributors-cli": "^6.26.1",
"contentful-cli": "~3.1.37",
"contentful-migration": "~4.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "~3.1.1",
"pretty-quick": "~3.1.3",
"standard-version": "~9.5.0",
"typescript": "~5.3.3"
}
}