forked from 3b1b/3Blue1Brown.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "3blue1brown-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"fresh": "rm -rf node_modules .next yarn.lock && yarn cache clean && yarn install",
"format": "prettier --write .",
"compress": "sh ./scripts/compress.sh"
},
"dependencies": {
"@popperjs/core": "^2.9.2",
"@react-three/fiber": "^7.0.2",
"@sentry/nextjs": "^6.10.0",
"disqus-react": "^1.0.11",
"glob": "^7.1.7",
"gray-matter": "^4.0.3",
"image-size": "^1.0.0",
"katex": "^0.13.11",
"next": "10.2.3",
"next-images": "^1.7.0",
"next-mdx-remote": "3.0.2",
"next-yaml": "^1.0.1",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-markdown": "^6.0.2",
"react-p5": "^1.3.19",
"react-popper": "^2.2.5",
"react-transition-group": "^4.4.2",
"react-twitter-embed": "^3.0.3",
"rehype-katex": "^5.0.0",
"rehype-slug": "^4.0.1",
"remark-13-math": "npm:remark-math@^4.0.0",
"remark-math": "^3.0.1",
"sass": "^1.34.1",
"three": "^0.130.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"eslint": "^7.5.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.3.2"
}
}