-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "nextjsazure",
"version": "0.1.0",
"private": true,
"scripts": {
"format": "prettier --cache --write .",
"check": "prettier --check .",
"prebuild": "node prebuild.ts",
"dev": "next dev -p 8000 -H 0.0.0.0",
"vm": "next dev -p 80 -H 0.0.0.0",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@nextui-org/react": "^2.4.6",
"@prisma/client": "^5.11.0",
"bcryptjs": "^2.4.3",
"framer-motion": "^11.3.28",
"next": "14.1.3",
"nextjs-cors": "^2.2.0",
"ol": "^9.0.0",
"ol-wind": "^1.1.8",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"eslint": "^8",
"eslint-config-next": "14.1.3",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prisma": "^5.11.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}