-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.03 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.03 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
{
"private": true,
"name": "@fims/fims-pay",
"version": "1.0.0",
"author": "Flojito Stillnet <flo@fims.fi>",
"repository": "https://github.com/flodef/FiMs-Pay",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "shx rm -rf .next",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
"nuke": "shx rm -rf node_modules package-lock.json || true",
"proxy": "local-ssl-proxy --source 3001 --target 3000",
"ngrok": "ngrok http https://localhost:3001"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.13",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-alert-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-icons": "^1.2.0",
"@radix-ui/react-navigation-menu": "^1.1.2",
"@radix-ui/react-select": "^1.2.1",
"@solana/pay": "^0.2.5",
"@solana/spl-token": "^0.3.7",
"@solana/wallet-adapter-base": "^0.9.22",
"@solana/wallet-adapter-react": "^0.15.31",
"@solana/wallet-adapter-react-ui": "^0.9.30",
"@solana/wallet-adapter-wallets": "^0.19.15",
"@solana/web3.js": "^1.74.0",
"@types/crypto-js": "^4.1.1",
"@typescript-eslint/parser": "^5.56.0",
"bignumber.js": "^9.1.1",
"bs58": "^5.0.0",
"cache-manager": "^5.1.7",
"classnames": "^2.3.2",
"clsx": "^1.2.1",
"color-interpolate": "^1.0.5",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"date-fns": "^2.29.3",
"dexie": "^3.2.3",
"dexie-react-hooks": "^1.1.3",
"express-rate-limit": "^6.7.0",
"next-translate": "^2.0.2",
"qr-scanner": "^1.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.3.1",
"react-responsive": "^9.0.2",
"react-responsive-carousel": "^3.2.23",
"stegcloak": "^1.1.1"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/cache-manager": "^4.0.2",
"@types/cors": "^2.8.13",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/express": "^4.17.17",
"@types/node": "^18.15.5",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/stegcloak": "^1.0.0",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"local-ssl-proxy": "^2.0.5",
"next": "^13.2.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-nesting": "^11.2.1",
"postcss-preset-env": "^8.0.1",
"prettier": "^2.8.5",
"shx": "^0.3.4",
"typescript": "^5.0.2",
"yarn-upgrade-all": "^0.7.2"
}
}