This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
forked from abedzantout/nextjs-blog-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.92 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
{
"name": "blogdeck-template",
"version": "0.0.1",
"description": "Blogdeck template",
"main": "server.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"postexport": "node utils/post-export.js",
"deploy": "now switch $TEAM && now --prod",
"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.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techhiveIO/nextjs-static-boilerplate.git"
},
"keywords": [
"nextjs",
"javascript",
"jam",
"jam-stack",
"boilerplate",
"contentful",
"netlify",
"typescript"
],
"author": "Techhive.IO LLC",
"license": "CHECK LICENSE UNDER LICENSE.md",
"bugs": {
"url": "https://github.com/techhiveIO/nextjs-static-boilerplate/issues"
},
"homepage": "https://github.com/techhiveIO/nextjs-static-boilerplate#readme",
"dependencies": {
"@segment/snippet": "^4.15.3",
"classnames": "^2.3.1",
"contentful": "^9.1.5",
"dotenv": "~8.6.0",
"eslint-plugin-prettier": "~3.4.1",
"express": "~4.17.1",
"isomorphic-unfetch": "~3.0.0",
"next": "^12.0.7",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-highlight": "^0.14.0",
"react-markdown": "6.0.3",
"styled-jsx": "^4.0.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.4.0",
"@types/node": "~12.7.8",
"@types/react": "~16.9.4",
"@types/react-dom": "~16.9.1",
"@typescript-eslint/eslint-plugin": "~2.3.2",
"@typescript-eslint/parser": "~2.3.2",
"autoprefixer": "^10.2.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "~6.3.0",
"postcss": "^8.2.7",
"prettier": "~1.18.2",
"tailwindcss": "^2.0.3",
"typescript": "^4.5.2"
}
}