-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "shoezstore",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"docker-dev": "docker-compose -f docker-compose.dev.yaml up -d --build",
"docker-prod": "docker-compose -f docker-compose.prod.yaml up -d --build",
"docker-stop-dev": "docker-compose -f docker-compose.dev.yaml stop"
},
"dependencies": {
"@apollo/client": "^3.7.3",
"@next/font": "13.1.1",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"eslint": "8.31.0",
"framer-motion": "^8.3.3",
"graphql": "^16.6.0",
"next": "^13.1.2",
"next-auth": "^4.18.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "4.9.4",
"zustand": "^4.3.2"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.8.2",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4"
}
}