-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 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
{
"name": "dotcms-documentation",
"version": "21.10.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint \"*/**/*.{js,ts,tsx}\" --fix",
"postinstall": "husky install"
},
"dependencies": {
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.1.3",
"anser": "^2.0.1",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"h2x-core": "^1.1.1",
"h2x-plugin-jsx": "^1.2.0",
"html-entities": "^2.3.2",
"next": "^10.1.2",
"next-mdx-remote": "^2.1.3",
"npm-check-updates": "^11.3.0",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"remark-comment-config": "^6.0.0",
"remark-heading-id": "^1.0.0",
"remark-html": "^13.0.1",
"remark-prism": "^1.3.6",
"remark-toc": "^7.2.0",
"styled-components": "^5.2.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"autoprefixer": "^10.2.5",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "6",
"lint-staged": "^10.5.4",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"tailwindcss": "^2.1.1",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}