-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.61 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
{
"name": "haydengg",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "npm run dev",
"build": "cross-env DEPLOYMENT=prod run-s build:*",
"dev:11ty": "eleventy --watch",
"dev:css": "tailwindcss -i blog/assets/css/tailwind.css -o _site_blog/assets/css/tailwind.css --watch --postcss",
"dev:server": "node dev-server.js",
"dev": "npx tinacms dev -c \"npm run dev-link\"",
"dev-link": "run-p dev:*",
"build:11ty": "eleventy",
"build:css": "tailwindcss -i blog/assets/css/tailwind.css -o _site_blog/assets/css/tailwind.css --postcss",
"build:vite": "vite build --outDir build/_site",
"build:merge": "mkdir build/_site/blog/ && shx mv _site_blog/* build/_site/blog/"
},
"dependencies": {
"@heroicons/react": "^2.0.13",
"@react-spring/three": "^9.7.5",
"@react-three/drei": "^9.114.2",
"@tinacms/cli": "^1.5.26",
"@types/three": "^0.146.0",
"animejs": "^3.2.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-three-fiber": "^6.0.13",
"three": "^0.147.0",
"tinacms": "^1.5.17"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.14",
"browser-sync": "^2.29.3",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.26",
"shx": "^0.3.4",
"tailwindcss": "^3.3.3",
"vite": "^4.0.0"
}
}