-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.75 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.75 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
67
{
"name": "shoppingify",
"version": "1.0.0",
"description": "Shopping list management with purchase stats.",
"keywords": [],
"license": "MIT",
"author": "Afroz Mohammad",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"check-types": "tsc --noEmit",
"lint": "yarn run check-types && next lint",
"format": "prettier --write .",
"vercel-build": "prisma generate && prisma migrate deploy && next build",
"test:w": "jest --watch --",
"test": "jest",
"p:gen": "prisma generate",
"p:mig": "prisma migrate",
"p:db": "prisma db",
"p:validate": "prisma validate",
"p:format": "prisma format",
"cy:run": "cypress run",
"cy:open": "cypress open"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.6.1",
"@prisma/client": "4.15.0",
"cookie": "^0.5.0",
"immer": "^10.0.0",
"jsonwebtoken": "^9.0.0",
"next": "^13.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.29.0",
"recharts": "^2.1.9",
"zustand": "^4.0.0"
},
"devDependencies": {
"@types/cookie": "0.5.1",
"@types/jest": "29.5.2",
"@types/jsonwebtoken": "9.0.2",
"@types/node": "16.11.35",
"@types/react": "^18.2.7",
"babel-jest": "29.5.0",
"cypress": "^12.13.0",
"eslint": "8.15.0",
"eslint-config-next": "^13.4.3",
"eslint-config-prettier": "^8.8.0",
"jest": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"prisma": "4.15.0",
"ts-node": "10.7.0",
"typescript": "5.1.3"
},
"prisma": {},
"engines": {
"node": ">=16.15.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}