-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.1 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
{
"name": "telenova",
"version": "1.4.1",
"type": "module",
"private": true,
"scripts": {
"dev": "PORT=3000 node ./server/index.js --watch",
"start": "NODE_ENV=production PORT=3000 node ./server/index.js",
"build": "remix vite:build",
"lint": "eslint app server",
"lint:fix": "eslint app server --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run --coverage",
"prepare": "husky",
"prettier": "prettier --write '{app,server}/**/*.{js,ts,tsx,json,css,md}'",
"precommit": "concurrently 'npm:lint' 'npm:typecheck' 'npm:test' 'npm:prettier'"
},
"dependencies": {
"@lottiefiles/react-lottie-player": "3.5.4",
"@nextui-org/react": "2.4.2",
"@polkadot/api": "13.1.1",
"@polkadot/keyring": "13.1.1",
"@polkadot/react-identicon": "3.9.1",
"@polkadot/types": "13.1.1",
"@polkadot/util": "13.1.1",
"@polkadot/util-crypto": "13.1.1",
"@remix-run/express": "2.9.2",
"@remix-run/node": "2.9.2",
"@remix-run/react": "2.9.2",
"@types/lodash-es": "^4.17.12",
"bignumber.js": "9.1.2",
"classnames": "2.5.1",
"crypto-js": "4.2.0",
"effector": "^23.2.2",
"effector-react": "^23.2.1",
"eslint-plugin-effector": "^0.14.0",
"isbot": "^4.4.0",
"lodash-es": "^4.17.21",
"patronum": "^2.2.0",
"react": "18.3.1",
"react-countup": "6.5.3",
"react-dom": "18.3.1",
"react-error-boundary": "4.0.13",
"react-imask": "7.6.1",
"react-middle-ellipsis": "1.2.2",
"react-qrcode-logo": "3.0.0",
"react-router-dom": "6.23.1",
"react-secure-storage": "^1.3.2",
"scrypt-js": "3.0.1",
"sirv": "2.0.4"
},
"devDependencies": {
"@remix-run/dev": "2.9.2",
"@remix-run/v1-route-convention": "0.1.4",
"@svgr/plugin-svgo": "8.1.0",
"@testing-library/jest-dom": "6.4.8",
"@testing-library/react": "16.0.0",
"@twa-dev/types": "7.8.0",
"@types/crypto-js": "4.2.2",
"@types/express": "4.17.21",
"@types/node": "20.14.8",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "8.1.0",
"@typescript-eslint/parser": "8.1.0",
"@vitejs/plugin-react": "4.3.1",
"@vitest/coverage-v8": "2.1.1",
"autoprefixer": "10.4.19",
"concurrently": "8.2.2",
"cssnano": "7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-react": "7.35.0",
"husky": "9.1.4",
"jsdom": "24.1.1",
"postcss": "8.4.41",
"prettier": "3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-tailwindcss": "^0.6.6",
"remix-routes": "1.7.7",
"tailwind-merge": "2.5.2",
"tailwindcss": "3.4.9",
"typescript": "5.5.4",
"typescript-remix-routes-plugin": "1.0.1",
"vite": "5.4.6",
"vite-plugin-compression2": "1.3.0",
"vite-plugin-svgr": "4.2.0",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.1.1"
}
}