forked from No-Cash-7970/txnDuck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.06 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "txnduck",
"version": "0.11.0",
"private": true,
"scripts": {
"compile-locales": "gulp compileLocales --no-color",
"dev": "gulp prebuild --no-color && next dev",
"build": "gulp prebuild --no-color && next build",
"build:standalone": "gulp buildStandalone",
"start": "next start",
"lint": "next lint --ext .js --ext .mjs --ext .cjs --ext .jsx --ext .ts --ext .mts --ext .cts --ext .tsx --ext .yml --ext .yaml",
"prod": "yarn build && next start",
"release": "release-it --ci && gulp postRelease --no-color",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"test:e2e": "yarn compile-locales && playwright test",
"install:dev": "yarn install && gulp installDev --no-color"
},
"dependencies": {
"@agoralabs-sh/avm-web-provider": "^1.7.0",
"@algorandfoundation/algokit-utils": "^6.2.1",
"@blockshake/defly-connect": "^1.1.6",
"@magic-ext/algorand": "^23.11.0",
"@perawallet/connect": "^1.3.4",
"@perawallet/connect-beta": "^2.0.20",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-toast": "^1.2.1",
"@tabler/icons-react": "^3.19.0",
"@tailwindcss/typography": "^0.5.15",
"@txnlab/use-wallet-react": "^3.7.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/sign-client": "^2.16.2",
"accept-language": "^3.0.20",
"algosdk": "^2.9.0",
"algosdkv3": "npm:algosdk@^3.0.0",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.10",
"gulp": "^5.0.0",
"gulp-execa": "^7.0.1",
"gulp-rename": "^2.0.0",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"jotai": "^2.10.0",
"jotai-form": "^0.1.6",
"js-yaml": "^4.1.0",
"lute-connect": "^1.4.1",
"magic-sdk": "^28.11.0",
"next": "^14.2.13",
"next-pwa": "^5.6.0",
"postcss": "^8.4.47",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.2",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"use-debounce": "^10.0.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@playwright/test": "^1.47.2",
"@release-it/conventional-changelog": "^8.0.2",
"@swc-jotai/react-refresh": "^0.2.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/next-pwa": "^5.6.9",
"@types/node": "^22.7.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.13",
"eslint-plugin-testing-library": "^6.3.0",
"eslint-plugin-yml": "^1.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-wip-reporter": "^2.1.0",
"lefthook": "^1.7.17",
"release-it": "^17.6.0",
"ts-jest": "^29.2.5",
"yaml-eslint-parser": "^1.2.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore(release): bump to v${version}",
"tagName": "v${version}",
"tagAnnotation": "Release v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"writerOpts": {
"mainTemplate": "{{#each commitGroups}}\n\n### {{title}}\n\n{{#each commits}}\n{{> commit root=@root}}\n{{/each}}\n{{/each}}\n\n{{> footer}}",
"footerPartial": "{{#if noteGroups}}\n{{#each noteGroups}}\n\n### {{title}}\n\n{{#each notes}}\n* {{text}}\n{{/each}}\n{{/each}}\n{{/if}}"
}
}
}
},
"packageManager": "[email protected]"
}