-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 KB
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
{
"name": "habitual-ecommerce",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint": "eslint --quiet '**/**/*.{ts,tsx}'",
"lint:fix": "eslint --quiet '**/**/*.{ts,tsx}' --fix",
"preety": "prettier --write --config .prettierrc.json '**/**/*.ts'",
"analyze-code": "npm run preety && npm run lint:fix && npm run lint"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.1",
"@prisma/client": "^3.9.1",
"bcryptjs": "^2.4.3",
"cookie": "^0.5.0",
"dayjs": "^1.11.5",
"downshift": "^6.1.7",
"eslint-plugin-react-hooks": "^4.7.0-next-19e9a4c68-20220818",
"imagekit": "^3.2.4",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"next": "^12.2.3",
"next-connect": "^0.12.1",
"nprogress": "^0.2.0",
"prisma": "^3.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.34.0",
"react-toastify": "^9.0.8",
"stripe": "^8.212.0",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie": "^0.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.23",
"@types/nprogress": "^0.2.0",
"@types/react": "17.0.39",
"@types/uuid": "^8.3.4",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-next": "12.0.10",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"tailwindcss": "^3.1.6",
"ts-node": "^10.7.0",
"typescript": "4.6.3"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} seed/seed.ts"
}
}