-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "crafty-pos-ts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run generate && next build",
"start": "next start",
"lint": "next lint",
"generate": "prisma generate"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@dinero.js/currencies": "2.0.0-alpha.1",
"@mantine/core": "^4.2.12",
"@mantine/form": "^4.2.12",
"@mantine/hooks": "^4.2.12",
"@mantine/modals": "^4.2.12",
"@mantine/next": "^4.2.12",
"@mantine/notifications": "^4.2.12",
"@prisma/client": "^5.5.2",
"@zxing/browser": "^0.1.1",
"@zxing/library": "^0.19.1",
"bcrypt": "^5.0.1",
"dinero.js": "2.0.0-alpha.14",
"fuzzysort": "^2.0.1",
"immer": "^9.0.15",
"js-levenshtein": "^1.1.6",
"next": "12.1.5",
"next-auth": "^4.3.4",
"react": "17.0.2",
"react-barcode": "^1.4.1",
"react-dom": "17.0.2",
"swr": "^1.3.0",
"tabler-icons-react": "^1.47.0"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^9.1.2",
"@types/bcrypt": "^5.0.0",
"@types/dinero.js": "1.9.3",
"@types/js-levenshtein": "^1.1.1",
"@types/node": "^17.0.31",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"prettier": "^2.6.2",
"prisma": "^5.5.2",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "4.9.4"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}