This repository was archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 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
{
"name": "pos-se",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"postinstall": "prisma generate",
"generate": "dotenv -e .env.local -- npx prisma generate",
"push": "dotenv -e .env.local -- npx prisma db push",
"studio": "dotenv -e .env.local -- npx prisma studio",
"prettier": "npx prettier . --write",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "jest"
},
"dependencies": {
"@prisma/client": "^5.4.1",
"@types/node": "20.5.9",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"axios": "^1.5.0",
"bcrypt": "^5.1.1",
"clsx": "^2.0.0",
"crypto-js": "^4.1.1",
"jose": "^4.14.6",
"minio": "^7.1.3",
"next": "13.4.19",
"postcss": "8.4.29",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.46.1",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@storybook/addon-essentials": "^7.4.2",
"@storybook/addon-interactions": "^7.4.2",
"@storybook/addon-links": "^7.4.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/addon-styling": "^1.3.7",
"@storybook/blocks": "^7.4.2",
"@storybook/nextjs": "^7.4.2",
"@storybook/react": "^7.4.2",
"@storybook/testing-library": "^0.2.1",
"@types/bcrypt": "^5.0.0",
"@types/crypto-js": "^4.1.2",
"@types/jest": "^29.5.5",
"babel-jest": "^29.7.0",
"dotenv-cli": "^7.3.0",
"eslint-plugin-storybook": "^0.6.13",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.5",
"prettier": "3.0.3",
"prisma": "^5.4.1",
"storybook": "^7.4.2"
}
}