-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.99 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.99 KB
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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 4000",
"build": "node -r @swc-node/register scripts/generate-feeds.js && next build",
"export": "next build && next export",
"analyze": "ANALYZE=true NODE_ENV=production next build && node -r @swc-node/register scripts/analyze-bundles.js",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@silvenon/remark-smartypants": "^1.0.0",
"confetti-js": "^0.0.18",
"crypto-js": "^4.1.1",
"gray-matter": "^4.0.3",
"highlight.js": "^10.5.0",
"image-size": "^1.0.2",
"mdast-util-definitions": "^4.0.0",
"moment": "^2.29.4",
"next": "^12.3.0",
"next-plugin-preact": "^3.0.7",
"polished": "^4.2.2",
"preact": "^10.11.2",
"preact-render-to-string": "^5.2.6",
"react": "npm:@preact/compat@^17.0.2",
"react-dom": "npm:@preact/compat@^17.0.2",
"react-hooks-global-state": "^1.0.2",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.2.0",
"remark": "^14.0.3",
"remark-excerpt": "^1.0.0-beta.1",
"remark-external-links": "^8.0.0",
"remark-gfm": "^3.0.1",
"remark-highlight.js": "^6.0.0",
"remark-html": "^14.0.1",
"remark-slug": "^6.0.0",
"sass": "^1.56.0",
"strip-markdown": "^4.0.0",
"styled-components": "^5.3.6",
"unist-util-remove": "^2.0.1",
"unist-util-visit": "^2.0.3",
"uplot": "^1.6.22"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.0",
"@svgr/webpack": "^6.5.1",
"@swc-node/register": "^1.5.4",
"css-class-generator": "^2.0.0",
"cssnano": "^5.1.14",
"eslint": "^8.26.0",
"eslint-config-next": "^12.3.0",
"globby": "^11.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"rss": "^1.2.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}