forked from peduarte/better-code-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·70 lines (70 loc) · 2.16 KB
/
package.json
File metadata and controls
executable file
·70 lines (70 loc) · 2.16 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
66
67
68
69
70
{
"name": "akshaykadam.com",
"version": "1.0.0",
"scripts": {
"clean": "rimraf .next",
"dev": "next",
"export": "next export",
"build:development": "next build && npm run export && npm run rss:development && npm run sitemap:development",
"build": "next build && npm run export && npm run rss && npm run sitemap",
"sitemap:development": "node ./.next/server/scripts/build-sitemap.js",
"sitemap": "node ./.next/serverless/scripts/build-sitemap.js",
"rss:development": "node ./.next/server/scripts/build-rss.js",
"rss": "node ./.next/serverless/scripts/build-rss.js",
"start": "next start",
"type-check": "tsc",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@mdx-js/react": "^1.6.22",
"@tailwindcss/typography": "^0.4.0",
"@types/nprogress": "^0.2.0",
"clsx": "^1.1.1",
"fast-glob": "^3.2.5",
"framer-motion": "^4.1.17",
"hast-util-classnames": "^2.0.0",
"hast-util-select": "^5.0.0",
"hast-util-to-html": "^7.1.3",
"hast-util-to-string": "^1.0.4",
"mdast-util-to-hast": "^11.0.0",
"next": "10.2.0",
"nprogress": "^0.2.0",
"parse-numeric-range": "^1.2.0",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"redent": "^4.0.0",
"refractor": "^3.3.1",
"rehype-parse": "^7.0.1",
"tinytime": "^0.2.6",
"unified": "^9.2.1",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@mdx-js/loader": "^1.6.22",
"@next/bundle-analyzer": "^10.2.0",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^15.3.0",
"@types/parse-numeric-range": "^0.0.1",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.5",
"@types/webpack-env": "^1.16.0",
"autoprefixer": "^10.2.5",
"cross-env": "^7.0.3",
"feed": "^4.2.2",
"file-loader": "^6.2.0",
"postcss": "^8.2.15",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"simple-functional-loader": "^1.2.1",
"tailwindcss": "^2.1.2",
"typescript": "4.2.4"
},
"license": "ISC"
}