-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "nextjs-cloudinary",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"prepare": "husky install"
},
"dependencies": {
"@cloudinary/url-gen": "^1.9.2",
"@types/node": "18.14.6",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"cloudinary": "^1.35.0",
"datauri": "^4.1.0",
"eslint-config-next": "13.2.3",
"multer": "1.4.5-lts.1",
"next": "13.2.3",
"next-connect": "^0.13.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"two-up-element": "^1.0.1",
"zustand": "^4.3.6"
},
"devDependencies": {
"@types/multer": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"eslint": "8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"typescript": "4.9.5"
}
}