-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.72 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
87
88
89
90
91
92
{
"name": "elliotforwater-blog",
"version": "1.0.0",
"scripts": {
"dev": "next dev -p 4000",
"just-build": "next build",
"build:stage": "env-cmd -f .env.staging run-s clean just-build",
"build:prod": "env-cmd -f .env.production run-s clean just-build",
"start:stage": "env-cmd -f .env.staging next start",
"start": "env-cmd -f .env.production next start",
"export": "next export",
"clean": "rimraf .next out",
"build-stats": "ANALYZE=true npm run just-build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"dependencies": {
"@contentful/field-editor-markdown": "^1.1.1",
"@mapbox/rehype-prism": "^0.6.0",
"@tailwindcss/jit": "^0.1.8",
"classnames": "^2.3.1",
"date-fns": "^2.19.0",
"gray-matter": "^4.0.2",
"next": "^11.1.3",
"next-seo": "^4.29.0",
"next-translate": "^1.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.0",
"rehype-stringify": "^8.0.0",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"slugify": "^1.5.0",
"styled-jsx-plugin-postcss": "^4.0.1",
"unified": "^9.2.1"
},
"devDependencies": {
"@contentful/rich-text-html-renderer": "^15.5.1",
"@contentful/rich-text-react-renderer": "^15.5.1",
"@contentful/rich-text-types": "^15.7.0",
"@next/bundle-analyzer": "^10.0.9",
"@types/gtag.js": "^0.0.8",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.0.1",
"autoprefixer": "^10.2.5",
"env-cmd": "^10.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsx": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-standard": "^4.0.1",
"fetch-jsonp": "^1.2.1",
"hoist-non-react-statics": "^3.3.2",
"husky": "^4.3.8",
"js-cookie": "^3.0.1",
"lint-staged": "^10.5.4",
"next-compose-plugins": "^2.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"react-hook-form": "^6.15.8",
"rimraf": "^3.0.2",
"tailwindcss": "^2.0.4",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.json": [
"prettier --write"
]
},
"license": "ISC"
}