-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.11 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": "next-netlify-cms-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "node scripts/process-config-yaml.js && next build && node scripts/generate-sitemap.js && next export",
"test": "jest --coverage",
"test:ci": "jest --ci",
"lint": "eslint --color --ignore-path .gitignore \"{{pages,src}/**/,}*.{js,jsx,ts,tsx}\"",
"format": "eslint --fix --color --ignore-path .gitignore \"{{pages,src}/**/,}*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@types/styled-components": "^5.1.0",
"babel-plugin-prismjs": "^2.0.1",
"formik": "^2.1.4",
"fs-extra": "^9.0.0",
"gray-matter": "^4.0.2",
"image-trace-loader": "^1.0.2",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^7.1.0",
"imagemin-svgo": "^7.1.0",
"js-yaml": "latest",
"netlify-cms": "^2.10.45",
"netlify-cms-app": "^2.12.9",
"next": "9.3.5",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.5.8",
"polished": "^3.5.1",
"prismjs": "^1.20.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-icons": "^3.9.0",
"react-markdown": "^4.3.1",
"styled-components": "^5.1.0",
"styled-media-query": "^2.1.2",
"styled-normalize": "^8.0.7",
"webp-loader": "^0.6.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/react": "^10.0.2",
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}