-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
138 lines (138 loc) · 4.1 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "scriptkit.com",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">16.x"
},
"scripts": {
"dev": "next dev",
"prebuild": "yarn docs-data && yarn share-data && yarn guide-data && yarn announcements-data && yarn hot-data && yarn course-data",
"build": "NODE_ENV=production next build",
"postbuild": "NODE_ENV=production next-sitemap",
"start": "next start",
"test": "jest --watch",
"repos": "kit ./scripts/repos.js",
"og-image": "kit generate-open-graph-image",
"get-scripts": "kit get-scripts",
"write-discussion-data": "kit write-discussion-data",
"share-data": "yarn write-discussion-data Share",
"guide-data": "yarn write-discussion-data Guide",
"docs-data": "yarn write-discussion-data Docs",
"hot-data": "kit update-hot",
"announcements-data": "yarn write-discussion-data Announcements",
"write-repo-scripts-data": "kit write-repo-scripts-data",
"write-course-data": "kit write-course-data",
"course-data": "yarn write-course-data script-kit-showcase-for-optimizing-your-everyday-workflows-e20ceab4"
},
"dependencies": {
"@headlessui/react": "^1.7.1",
"@heroicons/react": "^2.0.11",
"@johnlindquist/kit": "0.18.3",
"@octokit/rest": "^19.0.3",
"@sindresorhus/slugify": "^2.1.0",
"@supabase/supabase-js": "^2.0.5",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"client-oauth2": "^4.3.3",
"cloudinary": "^1.30.1",
"convertkit-react": "^1.5.5",
"cookie": "^0.5.0",
"cors": "^2.8.5",
"date-fns": "^2.29.2",
"discord.js": "^14.6.0",
"dotenv-flow": "^3.2.0",
"focus-visible": "^5.2.0",
"framer-motion": "^7.3.2",
"fs-extra": "^10.1.0",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"is-npm": "^6.0.0",
"lodash": "^4.17.21",
"mdx-prism": "^0.3.4",
"memoizee": "^0.4.15",
"memoizerific": "^1.11.3",
"next": "^12.3.0",
"next-seo": "^5.5.0",
"next-sitemap": "^3.1.22",
"next-svgr": "^0.0.2",
"playwright": "^1.24.2",
"playwright-aws-lambda": "^0.9.0",
"playwright-core": "^1.24.2",
"prism-react-renderer": "^1.3.5",
"query-string": "^7.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-lottie-player": "^1.4.3",
"react-markdown": "^8.0.3",
"react-syntax-highlighter": "^15.5.0",
"react-use": "^17.4.0",
"rehype": "^12.0.1",
"rehype-raw": "^6.0.0",
"remark-code-titles": "^0.1.2",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-slug": "^7.0.1",
"sharp": "^0.30.7",
"simplebar-react": "^2.4.1",
"slugify": "^1.6.5",
"tree-cli": "^0.6.7",
"twitter-lite": "^1.1.0"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.18.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/axios": "^0.14.0",
"@types/cookie": "^0.5.1",
"@types/cors": "^2.8.12",
"@types/fs-extra": "^9.0.13",
"@types/jsonfile": "^6.1.0",
"@types/lodash": "^4.14.182",
"@types/memoizee": "^0.4.8",
"@types/node": "^18.6.5",
"@types/react": "^18.0.17",
"@types/react-lottie": "^1.2.6",
"@types/react-syntax-highlighter": "^15.5.4",
"babel-jest": "^28.1.3",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jsonfile": "^6.1.0",
"lint-staged": "^13.0.3",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.4.16",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.1.8",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"yarn-upgrade-all": "^0.7.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write"
],
"src/**/*.{ts,tsx,md,mdx,js}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": false
}
}