-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.94 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
{
"name": "design-portfolio",
"private": true,
"sideEffects": [
"*.js",
"*.mjs",
"*.ts",
"*.tsx"
],
"type": "module",
"scripts": {
"build": "npm run lint && echo 'Lint passed, starting build...' && remix vite:build",
"dev": "remix vite:dev",
"postinstall": "node ./scripts/draco.cjs",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint",
"start": "wrangler pages dev ./build/client",
"deploy": "npm run build && wrangler pages deploy ./build/client --project-name portfolio --branch=production --commit-dirty=true",
"typecheck": "tsc"
},
"dependencies": {
"@csstools/postcss-global-data": "^3.0.0",
"@fortawesome/fontawesome-svg-core": "^6.7.1",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@react-three/drei": "^9.114.3",
"@react-three/fiber": "^8.17.9",
"@remix-run/cloudflare": "^2.15.0",
"@remix-run/cloudflare-pages": "^2.15.0",
"@remix-run/node": "^2.12.1",
"@remix-run/react": "^2.12.1",
"@remix-run/serve": "^2.12.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"dat.gui": "^0.7.9",
"emailjs-com": "^3.2.0",
"fabric": "^4.5.1",
"framer-motion": "^11.11.11",
"isbot": "^4.1.0",
"postcss-custom-media": "^11.0.2",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-fast-marquee": "^1.6.5",
"react-icons": "^5.3.0",
"react-lazy-load-image-component": "^1.6.2",
"react-tsparticles": "^2.12.0",
"rehype-img-size": "^1.0.1",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"three": "^0.169.0",
"three-stdlib": "^2.33.0",
"tsparticles": "^2.12.0",
"vite-plugin-glsl": "^1.3.0",
"vite-plugin-ssr": "^0.4.142"
},
"devDependencies": {
"@mapbox/rehype-prism": "^0.9.0",
"@mdx-js/rollup": "^3.0.1",
"@remix-run/dev": "^2.13.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^4.3.2",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unused-imports": "^4.1.4",
"postcss": "^8.4.38",
"raw-loader": "^4.0.2",
"rollup-plugin-copy": "^3.5.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-jsconfig-paths": "^2.0.1",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.1",
"wrangler": "^3.95.0"
},
"engines": {
"node": ">=20.0.0"
}
}