-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 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
36
37
38
39
40
41
42
{
"name": "nft-artworks",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "IPFS-powered NFT gallery with Pinata integration",
"scripts": {
"dev": "vite",
"server": "node server.cjs",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext .jsx,.js"
},
"engines": {
"node": "20.x"
},
"dependencies": {
"axios": "^1.6.7",
"form-data": "^4.0.0",
"formidable": "^3.5.1",
"framer-motion": "^11.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1"
},
"devDependencies": {
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"vite": "^5.1.2",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1"
}
}