This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "reasonml.org",
"private": true,
"version": "1.0.0",
"author": "Patrick Stapfer <ryyppy@users.noreply.github.com>",
"license": "MIT",
"engines": {
"node": "12.x"
},
"dependencies": {
"@glennsl/bs-json": "^3.0.0",
"@mdx-js/loader": "^1.5.5",
"@next/mdx": "^8.1.0",
"@octokit/graphql-schema": "^7.4.0",
"@zeit/next-css": "^1.0.1",
"bs-fetch": "^0.3.1",
"bs-platform": "7.1.1",
"esm": "^3.2.25",
"gentype": "^3.1.0",
"glob": "^7.1.4",
"gray-matter": "^4.0.2",
"highlight.js": "^9.15.10",
"next": "^9.5.2",
"next-transpile-modules": "^2.3.1",
"prettier": "^1.18.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"reason-promise": "^1.0.2",
"reason-react": "^0.7.0",
"remark-parse": "^7.0.1",
"remark-slug": "^5.1.2",
"remark-stringify": "^7.0.3",
"request": "^2.88.0",
"stringify-object": "^3.3.0",
"unified": "^8.4.0"
},
"scripts": {
"dev": "next -p 3001",
"build": "bsb -make-world && next build",
"test": "echo 'do nothing'",
"check-dead-code": "reanalyze -dce",
"check-for-exceptions": "reanalyze -exception",
"update-index": "node scripts/extract-indices.js && node scripts/extract-tocs.js && node -r esm scripts/generate_feed.bs.js > public/blog/feed.xml",
"now-build": "yarn run build",
"export": "next export",
"start": "next start -p $PORT",
"introspection": "./scripts/introspection.js",
"bs:build": "bsb -make-world",
"bs:clean": "bsb -clean-world",
"bs:start": "bsb -make-world -w"
},
"devDependencies": {
"autoprefixer": "^9.5.1",
"cssnano": "^4.1.10",
"postcss-cli": "^7.1.1",
"reanalyze": "^2.5.0",
"tailwindcss": "^1.4.6"
}
}