-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "bodgingbear.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "yarn lint:tsc && yarn lint:eslint",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@socialgouv/matomo-next": "^1.2.2",
"@types/mdx": "^2.0.10",
"eslint-config-next": "^14.1.0",
"glob": "^10.3.10",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.0",
"remark-breaks": "^3.0.2",
"remark-emoji": "^3.0.2",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@emotion/eslint-plugin": "^11.7.0",
"@next/eslint-plugin-next": "^12.0.10",
"@types/node": "^17.0.17",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
}
}