forked from jh3y/jhey.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.36 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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"build:cms": "cd ./studio && ./studio/node_modules/.bin/sanity build ../dist",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"prebuild": "node src/data/sync.js",
"postbuild": "node src/enhancers/enhancer.js",
"just-build": "astro build",
"preview": "astro preview",
"astro": "astro",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"deploy:prod": "yarn build && ntl deploy --prod",
"fix-up-look-sharp": "eslint --resolve-plugins-relative-to src/**/*.jsx && prettier src/**/*.{astro,css,jsx}"
},
"dependencies": {
"@astrojs/react": "^2.0.2",
"@astrojs/tailwind": "^3.0.1",
"@mdn/browser-compat-data": "^5.2.33",
"@sanity/client": "^4.0.1",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"astro": "^2.0.4",
"dat.gui": "^0.7.9",
"front-matter": "^4.0.2",
"prettier-plugin-astro": "^0.7.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-markdown": "^8.0.4",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"sanitize-html": "^2.8.1",
"sharp": "^0.31.3",
"tailwindcss": "^3.0.24",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@netlify/plugin-lighthouse": "^4.0.7",
"@storybook/addon-actions": "^7.0.0-beta.19",
"@storybook/addon-essentials": "^7.0.0-beta.19",
"@storybook/addon-interactions": "^7.0.0-beta.19",
"@storybook/addon-links": "^7.0.0-beta.19",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^7.0.0-beta.19",
"@storybook/react-webpack5": "^7.0.0-beta.19",
"@storybook/testing-library": "^0.0.14-next.1",
"@tailwindcss/typography": "^0.5.8",
"autoprefixer": "^10.4.13",
"babel-loader": "^8.3.0",
"cssnano": "^5.1.14",
"dotenv": "^16.0.3",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.31.11",
"html-minifier": "^4.0.0",
"jsdom": "^20.0.3",
"open-props": "^1.5.1",
"postcss": "^8.4.19",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-preset-env": "^7.8.3",
"prettier": "2.8.0",
"slugify": "^1.6.5",
"storybook": "^7.0.0-beta.19",
"uuid": "^9.0.0"
}
}