-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
39 lines (39 loc) · 1.36 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
{
"name": "docs.urbit.org",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run prebuild && next dev",
"prebuild": "npm run tooltip && npm run glossary && npm run language && npm run userspace && npm run system && npm run tools && npm run courses && npm run manual && npm run glossary",
"tooltip": "node src/lib/tooltip.js",
"glossary": "node src/lib/buildPageTree glossary weight",
"language": "node src/lib/buildPageTree language weight",
"userspace": "node src/lib/buildPageTree userspace weight",
"system": "node src/lib/buildPageTree system weight",
"tools": "node src/lib/buildPageTree tools weight",
"courses": "node src/lib/buildPageTree courses weight",
"manual": "node src/lib/buildPageTree manual weight",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@docsearch/js": "^3.5.2",
"@iarna/toml": "^2.2.5",
"@socialgouv/matomo-next": "^1.8.0",
"@urbit/fdn-design-system": "github:urbit/fnd-design-system#3ce9459",
"@urbit/markdoc": "^0.1.6",
"autoprefixer": "10.4.15",
"classnames": "^2.3.2",
"gray-matter": "^4.0.3",
"next": "13.5.4",
"postcss": "8.4.31",
"prismjs": "^1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3"
},
"devDependencies": {
"postcss-import": "^15.1.0"
}
}