-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "prince.dev",
"version": "1.0.0",
"description": "Prince Wilson's Personal Website",
"author": "Prince Wilson",
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "./postinstall.js",
"postinstall": "./postinstall.js",
"build:css-prod": "NODE_ENV=production yarn build:css",
"build:css": "postcss --config postcss-config src/styles/style.css -o public/style.css",
"build": "yarn build:css && yarn incremental",
"incremental": "toast incremental .",
"clean": "rm -rf public .tmp && yarn postinstall",
"start": "npx serve public",
"watch": "watch 'yarn incremental' ./src"
},
"private": "true",
"workspaces": [
"packages/*"
],
"dependencies": {
"@jlengstorf/get-share-image": "^0.7.1",
"@mdx-js/mdx": "^2.1.3",
"@mdx-js/preact": "^1.6.18",
"@sector/breadbox": "^0.0.4",
"@toastdotdev/mdx": "^0.3.4",
"autoprefixer": "^10.4.7",
"esinstall": "^1.1.7",
"globby": "^11.0.1",
"gray-matter": "^4.0.2",
"match-sorter": "^5.0.0",
"netlify-plugin-toast-cache": "^0.0.4",
"postcss": "^8.4.14",
"postcss-cli": "8.1.0",
"preact": "^10.5.4",
"preact-render-to-string": "^5.1.10",
"react-helmet": "^6.1.0",
"rehype-autolink-headings": "^5.0.1",
"rehype-local-image-to-cloudinary": "^1.1.0",
"rehype-slug": "^4.0.1",
"tailwindcss": "^3.1.6",
"toast": "^0.5.4"
},
"snowpack": {
"knownEntrypoints": [
"preact",
"preact/hooks",
"@mdx-js/preact"
],
"exclude": [
"public/**/*",
"toast.js",
"data/fetch-mdx-post-files.js",
"data/fetch-blender-post-files.js"
],
"installOptions": {
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
}
}
},
"devDependencies": {
"watch": "^1.0.2"
}
}