-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "next",
"lint": "eslint .",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write .",
"format": "conc -m 1 bun:format:eslint bun:format:prettier",
"build": "NODE_ENV=production conc -m 1 bun:build:contentlayer bun:build:next",
"build:contentlayer": "contentlayer build",
"build:next": "next build",
"start": "next start",
"test": "conc -m 1 bun:build:contentlayer bun:test:type",
"test:type": "tsc --noEmit"
},
"dependencies": {
"@chakra-ui/next-js": "2.2.0",
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.11.4",
"@emotion/styled": "11.11.5",
"@types/mdx": "2.0.13",
"contentlayer": "0.3.4",
"date-fns": "2.30.0",
"date-fns-tz": "2.0.1",
"esbuild": "0.20.2",
"feed": "4.2.2",
"framer-motion": "11.0.24",
"next": "14.2.21",
"next-contentlayer": "0.3.4",
"prism-react-renderer": "2.3.1",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-children-utilities": "2.10.0",
"react-dom": "18.2.0",
"react-icons": "5.0.1",
"react-twitter-embed": "4.0.4",
"react-youtube": "10.1.0",
"remark-breaks": "4.0.0",
"remark-gfm": "3.0.1",
"remark-unwrap-images": "4.0.1",
"remeda": "1.57.0",
"sass": "1.71.1"
},
"devDependencies": {
"@fohte/eslint-config": "0.0.4",
"@types/jsdom": "21.1.7",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"bun-types": "1.0.36",
"concurrently": "8.2.2",
"eslint": "8.56.0",
"eslint-config-next": "14.1.4",
"iconv-lite": "0.6.3",
"jsdom": "24.1.3",
"prettier": "3.4.2",
"textlint": "14.0.4",
"textlint-rule-preset-ja-technical-writing": "9.0.0",
"typescript": "5.4.5"
},
"resolutions": {
"@emotion/react": "11.11.4",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"date-fns": "2.30.0"
},
"license": "ISC"
}