-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 903 Bytes
/
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
{
"name": "tstyche.org",
"version": "1.0.0",
"private": true,
"description": "TSTyche Documentation Website.",
"license": "MIT",
"type": "module",
"scripts": {
"build": "next build",
"check:spelling": "cspell --cache --config cspell.config.json --quiet",
"dev": "next dev",
"start": "next start"
},
"dependencies": {
"@carbon/icons-react": "^11.52.0",
"@fontsource/ibm-plex-mono": "^5.1.0",
"@fontsource/ibm-plex-sans": "^5.1.0",
"next": "^14.2.12",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "22.9.0",
"autoprefixer": "10.4.20",
"cspell": "8.15.7",
"postcss": "8.4.47",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}