-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.34 KB
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
{
"name": "blessedux-portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "npm run build:repos && next build",
"start": "next start",
"lint": "next lint",
"build:repos": "cd repos && npm install && npm run build && cd .. && mkdir -p public/my-work/codeology/dist && cp -r repos/dist/* public/my-work/codeology/dist/ && cp repos/index.html public/my-work/codeology/ && node -e \"const fs=require('fs'); const content=fs.readFileSync('public/my-work/codeology/index.html','utf8'); fs.writeFileSync('public/my-work/codeology/index.html', content.replace(/\\/dist\\//g, '/my-work/codeology/dist/'));\"",
"dev:repos": "cd repos && npm run dev",
"update:repos": "git submodule update --remote repos && npm run build:repos"
},
"dependencies": {
"@react-spring/web": "^9.7.5",
"@splinetool/react-spline": "^4.0.0",
"framer-motion": "^11.0.8",
"next": "15.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.5.0",
"react-intersection-observer": "^9.16.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}