-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 836 Bytes
/
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
{
"name": "nextjs-gcs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/server.js",
"lint": "next lint"
},
"dependencies": {
"@google-cloud/storage": "^6.6.0",
"@types/node": "18.11.9",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"formidable": "^2.0.1",
"next": "13.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.8.4"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/formidable": "^2.0.5",
"autoprefixer": "^10.4.13",
"nodemon": "^2.0.20",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.1",
"ts-node": "^10.9.1"
}
}