-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "jones-store",
"version": "0.1.0",
"author": {
"name": "Kenny Sutherland",
"email": "kennymax18@gmail.com"
},
"description": "Jones - An online store for purchasing Nike Jordan Ones.",
"keywords": [
"jordan ones",
"nike",
"e-commerce",
"shoe",
"store",
"typescript",
"react",
"next js",
"sql",
"prisma",
"postgresql",
"stripe",
"sass"
],
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pretty-up": "prettier --config .prettierrc {{src,pages}/**/*.{ts,tsx},middleware.ts} --write",
"db:migrate": "npx prisma migrate dev --name"
},
"dependencies": {
"@prisma/client": "^4.3.1",
"@types/nprogress": "^0.2.0",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"friendly-username-generator": "^2.0.4",
"iron-session": "^6.2.1",
"micro": "^9.4.1",
"moment": "^2.29.4",
"next": "12.3.0",
"next-share": "^0.19.0",
"nprogress": "^0.2.0",
"probe-image-size": "^7.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.4.0",
"react-spinners": "^0.13.6",
"react-toastify": "^9.1.1",
"sanitize-html": "^2.7.2",
"sharp": "^0.31.2",
"stripe": "^10.16.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/sanitize-html": "^2.6.2",
"eslint": "8.23.1",
"eslint-config-next": "12.3.0",
"prettier": "^2.7.1",
"prisma": "^4.3.1",
"sass": "^1.54.9",
"typescript": "4.8.3"
}
}