-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 2.03 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
{
"name": "dimipay-admin",
"private": true,
"scripts": {
"dev": "yarn prisma db pull && yarn prisma generate && yarn loadstock && next dev",
"build": "yarn prisma db pull && yarn prisma generate && yarn next build",
"start": "yarn loadstock && yarn next start",
"loadstock": "yarn ts-node ./loadstock.ts",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx --fix .",
"prepare": "yarn dlx husky install"
},
"dependencies": {
"@haechi/flexile": "^1.4.7",
"@prisma/client": "4.5.0",
"@stitches/react": "^1.2.8",
"axios": "^1.1.3",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"formik": "^2.2.9",
"immer": "^9.0.15",
"josa-complete": "^2.0.1",
"jotai": "^1.8.6",
"jsonwebtoken": "^8.5.1",
"luxon": "^3.0.4",
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "^9.4.0",
"react-spinners": "^0.13.6",
"react-toastify": "^9.0.8",
"read-excel-file": "^5.5.3",
"redis": "^4.3.1",
"swr": "^1.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/luxon": "^3",
"@types/node": "^18.11.2",
"@types/react": "^18.0.21",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"prisma": "^4.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"packageManager": "[email protected]",
"dependenciesMeta": {
"@prisma/[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
}
}
}