forked from graphprotocol/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.42 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
{
"name": "@graphprotocol/docs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "rm -rf .next && next build",
"start": "next start",
"export": "rm -rf out && next export -o out/docs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.mjs && yarn prettier:check && yarn typecheck",
"lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx,.mjs && yarn prettier && yarn typecheck",
"prettier": "prettier . --write",
"prettier:check": "prettier . --check",
"typecheck": "tsc --noEmit",
"docker:build": "DOCKER_BUILDKIT=1 docker build . -t docs --no-cache",
"docker:up": "docker run --rm -it -p 3000:80 -v \"$(pwd)/nginx.conf:/etc/nginx/nginx.conf\" docs",
"docker:clean": "docker builder prune",
"prepare": "husky install && chmod +x .husky/*",
"pre-commit": "lint-staged --concurrent false",
"pre-push": "yarn build"
},
"dependencies": {
"@docsearch/react": "^3.3.3",
"@edgeandnode/components": "^25.1.0",
"@emotion/react": "^11.10.5",
"@mdx-js/loader": "^2.2.1",
"@mdx-js/react": "^2.2.1",
"@next/mdx": "^12.3.4",
"@radix-ui/react-collapsible": "1.0.1",
"@radix-ui/react-popover": "^1.0.3",
"@radix-ui/react-visually-hidden": "^1.0.1",
"@reach/auto-id": "^0.18.0",
"lodash": "^4.17.21",
"next": "^12.3.4",
"next-seo": "^5.15.0",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-intersection-observer": "^9.4.1",
"react-use": "^17.4.0",
"remark-gfm": "^3.0.1",
"theme-ui": "^0.15.4",
"use-bus": "^2.5.2"
},
"devDependencies": {
"@edgeandnode/eslint-config": "^1.3.0",
"@sindresorhus/slugify": "^2.2.0",
"@svgr/webpack": "^6.5.1",
"@types/color": "^3.0.3",
"@types/lodash": "^4.14.191",
"@types/node": "^16.18.12",
"@types/react": "^17.0.53",
"@types/react-dom": "^17.0.18",
"acorn": "^8.8.2",
"acorn-jsx": "^5.3.2",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"path": "^0.12.7",
"prettier": "^2.8.3",
"remark-frontmatter": "^4.0.1",
"remark-mdx-frontmatter": "^2.1.1",
"serialize-as-code": "^2.0.2",
"typescript": "4.9.5",
"unist-util-visit": "^4.1.2",
"url": "^0.11.0"
},
"resolutions": {
"@types/react": "^17.0.52"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mjs}": "eslint --fix",
"**/*.{js,jsx,ts,tsx,mjs,mdx,json}": "prettier --write"
}
}