forked from statichunt/statichunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.33 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
{
"name": "statichunt",
"description": "statichunt is a static themes and resources directory",
"version": "2.0.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "yarn update && next dev",
"build": "yarn update && next build",
"lint": "next lint",
"start": "next start",
"json": "node scripts/jsonGenerator.mjs",
"update": "node scripts/jsonGenerator.mjs && node scripts/parseNewThemesData.js && node scripts/screenshotThemes.mjs && node scripts/screenshotExamples.mjs && node scripts/screenshotResources.mjs",
"ss-themes": "yarn json && node scripts/screenshotThemes.mjs",
"ss-resources": "yarn json && node scripts/screenshotResources.mjs",
"ss-examples": "yarn json && node scripts/screenshotExamples.mjs",
"update-themes": "yarn json && node scripts/updateThemes.js && yarn json",
"postbuild": "next-sitemap --config next-sitemap.config.mjs"
},
"dependencies": {
"cli-spinner": "^0.2.10",
"dotenv": "^16.0.3",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"lodash.debounce": "^4.0.8",
"marked": "^4.2.12",
"next": "13.2.3",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^4.0.2",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-discord-invite": "^4.0.8",
"react-dom": "18.2.0",
"react-gravatar": "^2.6.3",
"react-gtm-module": "^2.0.11",
"react-icons": "^4.8.0",
"react-infinite-scroll-component": "^6.1.0",
"react-use-cookie": "^1.4.0",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"tailwind-scrollbar": "^2.1.0",
"typewriter-effect": "^2.19.0"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.13",
"axios": "^1.3.4",
"axios-rate-limit": "^1.3.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"fs-extra": "^11.1.0",
"js-yaml": "^4.1.0",
"jshint": "^2.13.6",
"ora": "^6.1.2",
"parse-github-url": "^1.0.2",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"puppeteer": "^19.7.2",
"sass": "^1.58.3",
"sharp": "^0.31.3",
"tailwind-bootstrap-grid": "^5.0.1",
"tailwindcss": "^3.2.7",
"yaml-front-matter": "^4.1.1"
}
}