-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
115 lines (115 loc) · 3.67 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"private": true,
"name": "livepeer-org",
"version": "0.4.0-rc.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "tinacms server:start -c \"next\"",
"build": "tinacms server:start -c \"next build\"",
"start": "tinacms server:start -c \"next start\"",
"lint": "(eslint . && prettier --check '**/*.{js,ts,tsx}' --loglevel warn) || yarn lint:warn",
"lint:warn": "echo '\\nError: Not all files are pretty, run yarn lint:fix\\n'",
"lint:fix": "eslint . --fix --rule 'react-hooks/exhaustive-deps: off' && prettier --write '**/*.{js,ts,tsx,json}'",
"lint:staged": "lint-staged --quiet",
"prettier": "prettier --write '**/*.{ts,js,css,html,md,tsx,mdx,yaml,yml,gql,graphql,json}'",
"type-check": "tsc --pretty --noEmit",
"postbuild": "next-sitemap"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@livepeer/design-system": "^0.0.0-beta.5",
"@mapbox/rehype-prism": "^0.6.0",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.2",
"@radix-ui/react-dropdown-menu": "0.0.10",
"@radix-ui/react-icons": "^1.0.2",
"@radix-ui/react-id": "^0.0.2",
"@radix-ui/themes": "^1.0.0",
"@sanity/client": "^2.2.6",
"@sanity/image-url": "^0.140.22",
"@sindresorhus/slugify": "^1.1.0",
"@tinacms/auth": "^0.50.2",
"@tinacms/cli": "^0.60.11",
"babel-loader": "^9.1.2",
"classnames": "^2.2.6",
"cors": "^2.8.5",
"formidable-serverless": "^1.1.1",
"globby": "^13.2.2",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.11.0",
"gray-matter": "^4.0.2",
"gsap": "./lib/animations/gsap-bonus.tgz",
"keen-slider": "^5.2.2",
"markdown-toc": "^1.2.0",
"mdx-bundler": "^9.2.1",
"next": "^10.0.7",
"next-compose-plugins": "^2.2.1",
"next-connect": "^0.11.0",
"next-i18next": "^8.1.0",
"next-mdx-remote": "^2.1.3",
"next-sitemap": "^4.2.2",
"next-svgr": "^0.0.2",
"next-tinacms-cloudinary": "^3.5.25",
"next-transpile-modules": "^6.3.0",
"prism-react-renderer": "^1.1.1",
"react": "^16.13.1",
"react-collapsible": "^2.8.3",
"react-dom": "^16.13.1",
"react-dropzone": "^14.2.1",
"react-hook-form": "^6.2.0",
"react-icons": "^4.10.1",
"react-intersection-observer": "^8.26.2",
"react-markdown": "^5.0.3",
"react-reveal": "^1.2.2",
"react-scroll": "^1.8.0",
"react-syntax-highlighter": "^15.5.0",
"react-typist": "^2.0.5",
"react-use-mailchimp": "^0.4.0",
"remark": "^14.0.3",
"remark-html": "^15.0.2",
"styled-components": "^5.3.5",
"theme-ui": "^0.3.1",
"three": "^0.119.1",
"tinacms": "^0.67.0",
"zod": "^2.0.0-beta.30"
},
"devDependencies": {
"@livepeer/prettier-config": "^1.0.1",
"@types/classnames": "^2.2.10",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"@types/theme-ui": "^0.3.7",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"yarn-upgrade-all": {
"ignore": [
"gsap"
]
},
"pre-commit": "lint:staged",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,html,md,tsx,mdx,yaml,yml,gql,graphql,json}": "prettier --write"
}
}