-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.5 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
{
"name": "3blue1brown.com",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix && prettier **/*.{js,jsx,ts,tsx,md,mdx,css,html,json,yaml} --write --no-error-on-unmatched-pattern",
"test:types": "tsc --noEmit",
"test:lint": "next lint && prettier **/*.{js,jsx,ts,tsx,md,mdx,css,html,json,yaml} --check --no-error-on-unmatched-pattern",
"test": "bun run test:types && bun run test:lint",
"clean": "rm -rf node_modules bun.lockb .next out && bun pm cache rm"
},
"dependencies": {
"@reactuses/core": "^6.0.1",
"clsx": "^2.1.1",
"esbuild": "^0.24.2",
"glob": "^11.0.0",
"lodash-es": "^4.17.21",
"mdx-bundler": "^10.0.3",
"next": "^15.1.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@types/lodash-es": "^4.17.12",
"@types/mdx": "^2.0.13",
"@types/node": "20.17.11",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"eslint": "9.17.0",
"eslint-config-next": "^15.1.3",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^4.6.2",
"next-remote-refresh": "^0.10.1",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-jsdoc": "^1.3.0",
"type-fest": "^4.31.0",
"typescript": "5.7.2"
}
}