-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.63 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
{
"name": "react-template",
"private": true,
"version": "2.9.1",
"gitHooks": {
"pre-commit": "tsc && yarn lint",
"pre-push": "npx rlx rsc"
},
"scripts": {
"build": "dotenv -e .env vite build",
"start": "dotenv -e .env vite",
"analyze": "vite build --mode analyze",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:styles": "stylelint \"src/**/*.{css,sass,scss}\" --max-warnings=0",
"lint:scripts": "eslint \"{src,config}/**/*.{js,ts,jsx,tsx}\" --cache --fix --max-warnings=0 && tsc --noEmit",
"preview": "vite preview",
"generate-ether-types": "typechain --target=ethers-v5 'abis/**/*.json' --out-dir src/types/contracts",
"package-version": "node -p \"require('./package.json').version\"",
"version": "rlx changelog release $(yarn package-version) && git add ."
},
"dependencies": {
"@civic/ethereum-gateway-react": "0.13.4",
"@distributedlab/jac": "^1.0.0-rc.15",
"@distributedlab/tools": "^1.0.0-rc.15",
"@distributedlab/w3p": "1.0.0-rc.15",
"@iden3/js-crypto": "1.0.0-beta.1",
"@iden3/js-iden3-core": "1.0.0-beta.2",
"@iden3/js-jsonld-merklization": "1.0.0-beta.14",
"@iden3/js-jwz": "1.0.0-beta.2",
"@iden3/js-merkletree": "1.0.0-beta.4",
"@rarimo/rarime-connector": "^3.0.0-rc.2",
"@sentry/react": "7.63.0",
"@sentry/rollup-plugin": "^2.7.1",
"@uauth/js": "^2.8.0",
"caip-api": "^2.0.0-beta.1",
"downshift": "^7.1.2",
"ejc": "^1.0.4",
"ethers": "^5.7.0",
"framer-motion": "^10.12.10",
"i18next": "^22.4.9",
"lodash": "^4.17.21",
"loglevel": "^1.8.0",
"lottie-react": "^2.4.0",
"mitt": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-i18next": "^12.1.4",
"react-router-dom": "^6.6.2",
"react-toastify": "^9.1.3",
"react-tooltip": "^5.21.5",
"react-use": "^17.4.0",
"snarkjs": "^0.7.0",
"socket.io-client": "^4.7.2",
"use-file-picker": "^1.7.0",
"usehooks-ts": "^2.9.1",
"util": "^0.12.5",
"uuid": "^9.0.0",
"valtio": "^1.10.6",
"yup": "^1.1.1"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@napalmpapalam/rlx": "^0.4.1",
"@typechain/ethers-v5": "^11.0.0",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.1",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-transition-group": "^4.4.5",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@vitejs/plugin-react": "^4.0.1",
"chalk": "^5.0.1",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.2.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.24",
"prettier": "^2.7.1",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.63.6",
"stylelint": "^15.9.0",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-declaration-strict-value": "1.9.2",
"stylelint-scss": "^5.0.1",
"typechain": "^8.2.0",
"typescript": "^5.1.3",
"vite": "^4.5.3",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-html": "^3.2.0",
"vite-plugin-node-polyfills": "^0.21.0",
"vite-plugin-svg-icons": "^2.0.1",
"vite-tsconfig-paths": "^4.0.3",
"yorkie": "^2.0.0"
},
"packageManager": "yarn@4.2.2"
}