-
-
Notifications
You must be signed in to change notification settings - Fork 247
/
package.json
78 lines (78 loc) · 2.25 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
69
70
71
72
73
74
75
76
77
78
{
"name": "rescript-lang.org",
"private": true,
"version": "1.0.0",
"author": "Patrick Ecker <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"postcss": {
"plugins": {
"postcss-import": {},
"tailwindcss/nesting": "postcss-nesting",
"tailwindcss": {},
"autoprefixer": {}
}
},
"dependencies": {
"@babel/generator": "^7.24.7",
"@babel/parser": "^7.24.7",
"@babel/traverse": "^7.24.7",
"@docsearch/react": "^3.5.2",
"@headlessui/react": "^1.2.0",
"@mdx-js/loader": "^2.3.0",
"@rescript/core": "^1.4.0",
"@rescript/react": "^0.12.0-alpha.3",
"@rescript/tools": "^0.5.0",
"codemirror": "^5.54.0",
"docson": "^2.1.0",
"escodegen": "^2.1.0",
"eslint-config-next": "^13.1.1",
"fuse.js": "^6.4.3",
"gentype": "^3.44.0",
"glob": "^7.1.4",
"gray-matter": "^4.0.3",
"highlight.js": "^11.9.0",
"highlightjs-rescript": "^0.2.2",
"lz-string": "^1.4.4",
"next": "^14.2.2",
"next-mdx-remote": "^4.4.1",
"prettier": "^1.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"rehype-slug": "^5.1.0",
"remark-comment": "^1.0.0",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx-frontmatter": "^3.0.0",
"remark-parse": "^10.0.2",
"remark-slug": "^5.1.2",
"remark-stringify": "^7.0.3",
"request": "^2.88.0",
"rescript": "^11.1.0",
"stringify-object": "^3.3.0",
"unified": "^8.4.0"
},
"scripts": {
"dev": "next",
"build": "rescript && npm run update-index && next build",
"test": "node scripts/test-examples.mjs && node scripts/test-hrefs.mjs",
"reanalyze": "reanalyze -all-cmt .",
"update-index": "node scripts/extract-indices.mjs && node scripts/extract-tocs.mjs && node scripts/extract-syntax.mjs && node scripts/generate_feed.mjs > public/blog/feed.xml"
},
"devDependencies": {
"@mdx-js/react": "^2.3.0",
"autoprefixer": "^10.4.14",
"cssnano": "^6.0.1",
"esbuild-loader": "^2.20.0",
"postcss": "^8.4.27",
"postcss-cli": "^8.3.0",
"postcss-nesting": "^12.1.1",
"reanalyze": "^2.16.0",
"simple-functional-loader": "^1.2.1",
"tailwindcss": "^3.3.3"
}
}