-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 983 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 983 Bytes
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
{
"name": "psyflow-website",
"version": "0.1.0",
"private": true,
"description": "Static website for PsyFlow framework documentation and tutorials.",
"scripts": {
"dev": "python ../scripts/build-site-data.py && next dev",
"build": "python ../scripts/build-site-data.py && next build",
"build:site": "python ../scripts/build-site-data.py && next build",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"next": "16.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "9.0.1",
"rehype-highlight": "7.0.0",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.13",
"@types/node": "20.14.10",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"autoprefixer": "10.4.20",
"eslint": "9.39.2",
"eslint-config-next": "16.1.6",
"postcss": "8.4.41",
"tailwindcss": "3.4.10",
"typescript": "5.5.4"
}
}