-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 932 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
34
35
36
37
38
{
"name": "photo-upload",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"startapp": "npm run build && npm run start"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.5",
"@mui/material": "^5.15.5",
"next": "14.2.10",
"node-fetch": "^3.3.2",
"pg": "^8.11.3",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.33.2",
"uuid": "^9.0.1",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"autoprefixer": "^10.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.1",
"@testing-library/react": "^14.1.2",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
}
}