forked from apideck-io/blog
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 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
{
"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.'",
"release": "standard-version && git push --follow-tags origin master",
"populate:contentful": "contentful space migration --space-id $SPACE_ID 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": "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",
"pre-commit": "pretty-quick --staged",
"dependencies": {
"@segment/snippet": "^4.4.0",
"@zeit/next-css": "^1.0.1",
"classnames": "^2.2.6",
"contentful": "~7.10.0",
"dotenv": "~8.1.0",
"dotenv-webpack": "^1.7.0",
"eslint-plugin-prettier": "~3.1.1",
"express": "~4.17.1",
"isomorphic-unfetch": "~3.0.0",
"next": "~9.0.7",
"react": "~16.10.1",
"react-dom": "~16.10.1",
"react-markdown": "~4.2.2",
"serve": "~11.2.0"
},
"devDependencies": {
"@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",
"all-contributors-cli": "^6.9.1",
"babel-plugin-module-resolver": "^4.0.0",
"contentful-cli": "~1.1.1",
"contentful-migration": "~1.0.2",
"eslint-config-prettier": "~6.3.0",
"postcss-preset-env": "^6.7.0",
"prettier": "~1.18.2",
"pretty-quick": "~1.11.1",
"standard-version": "~7.0.0",
"tailwindcss": "^1.2.0",
"typescript": "~3.6.3"
}
}