-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.52 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
{
"name": "portfolio-alex-streza",
"version": "0.0.1",
"private": true,
"type": "commonjs",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"test:build": "set NODE_ENV=production&& set CI=true&& astro build",
"preview": "astro preview",
"md:scrape": "node ./scripts/scrape-medium",
"md:generate": "node ./scripts/generate-md && yarn prettier:format",
"prettier:check": "prettier --check \"./src/**/*.{ts,tsx,js,jsx,md}\"",
"prettier:format": "prettier --write \"./src/**/*.{ts,tsx,js,jsx,md}\"",
"lint": "eslint --ext .js,.ts,.jsx,.tsx src",
"fix": "eslint --fix --ext .js,.ts,.jsx,.tsx src"
},
"devDependencies": {
"@astrojs/mdx": "^1.1.2",
"@astrojs/react": "^3.0.3",
"@astrojs/rss": "^3.0.0",
"@astrojs/sitemap": "^1.2.2",
"@astrojs/tailwind": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"astro": "^3.3.1",
"astro-icon": "^0.8.1",
"astro-compress": "^2.0.15",
"astro-robots-txt": "^1.0.0",
"autoprefixer": "^10.4.16",
"cli-progress": "^3.12.0",
"cssnano": "^6.0.1",
"cssnano-preset-advanced": "^6.0.1",
"cssnano-preset-lite": "^3.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint-plugin-astro": "^0.26.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss-import": "^15.1.0",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.8.0",
"puppeteer": "^19.11.1",
"tailwindcss-themer": "^3.0.1"
},
"dependencies": {
"axios": "^1.3.6",
"spacetime": "^7.4.3",
"@barba/core": "^2.9.7",
"@codesandbox/sandpack-react": "^2.6.1",
"@icons-pack/react-simple-icons": "^7.2.0",
"@liveblocks/client": "^1.0.6",
"@liveblocks/react": "^1.0.6",
"@react-hookz/web": "^23.0.0",
"@react-spring/three": "^9.7.2",
"@react-three/cannon": "^6.5.2",
"@react-three/drei": "^9.66.1",
"@react-three/fiber": "^8.13.0",
"@react-three/postprocessing": "^2.8.3",
"color2k": "^2.0.2",
"gsap": "npm:@gsap/business@^3.11.5",
"kbar": "^0.1.0-beta.40",
"lamina": "^1.1.23",
"leva": "^0.9.35",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-spring": "^9.7.1",
"react-tsparticles": "^2.9.3",
"three": "^0.152.0",
"tsparticles": "^2.9.3",
"unique-names-generator": "^4.7.1",
"zustand": "^4.3.7"
},
"resolutions": {
"**/react": "^18.2.0",
"**/react-dom": "^18.2.0"
}
}