forked from shopstr-eng/shopstr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.46 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.46 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "shopstr",
"version": "0.10.3",
"type": "module",
"private": true,
"engines": {
"node": ">=18.17.0",
"npm": ">=9.6.7"
},
"scripts": {
"dev": "next dev -p 5000",
"build": "next build",
"start": "next start -H 0.0.0.0 -p ${PORT:-3000}",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"lint-all": "npm run type-check && npm run lint",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@braintree/sanitize-url": "7.1.0",
"@cashu/cashu-ts": "2.1.0",
"@ducanh2912/next-pwa": "10.2.9",
"@getalby/lightning-tools": "5.0.1",
"@getalby/sdk": "5.1.2",
"@heroicons/react": "2.1.1",
"@modelcontextprotocol/sdk": "1.27.1",
"@nextui-org/react": "2.2.9",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"autoprefixer": "10.4.14",
"chart.js": "4.5.1",
"crypto-js": "4.2.0",
"dexie": "3.2.4",
"dexie-react-hooks": "1.1.7",
"eslint": "8.57.0",
"eslint-config-next": "13.3.0",
"framer-motion": "10.16.4",
"next": "16.1.7",
"next-themes": "0.2.1",
"nostr-tools": "2.7.1",
"pg": "8.11.5",
"postcss": "8.4.31",
"qrcode": "1.5.3",
"react": "18.2.0",
"react-chartjs-2": "5.3.1",
"react-dom": "18.2.0",
"react-hook-form": "7.47.0",
"react-responsive-carousel": "3.2.23",
"tailwindcss": "3.3.1",
"uuid": "9.0.0"
},
"devDependencies": {
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/crypto-js": "4.2.2",
"@types/jest": "29.5.14",
"@types/node": "20.7.0",
"@types/pg": "8.11.4",
"@types/qrcode": "1.5.5",
"@types/react": "18.2.22",
"@types/react-dom": "18.0.11",
"@types/uuid": "9.0.4",
"babel-jest": "30.0.4",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"jest-environment-jsdom": "30.2.0",
"prettier": "3.1.0",
"prettier-plugin-tailwindcss": "0.5.7",
"typescript": "5.2.2"
},
"overrides": {
"serialize-javascript": "7.0.5",
"picomatch": "4.0.4"
},
"resolutions": {
"@types/react": "18.2.22",
"@types/react-dom": "18.0.11"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}