-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
97 lines (97 loc) · 3.25 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
{
"name": "@kleros/veascan-web",
"version": "0.1.0",
"source": "src/index.html",
"browserslist": "> 0.5%, not dead",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kleros/vea.git"
},
"author": "Vea Team <[email protected]> (https://vea.ninja)",
"bugs": {
"url": "https://github.com/kleros/vea/issues"
},
"homepage": "https://github.com/kleros/vea#readme",
"license": "MIT",
"volta": {
"node": "22.14.0",
"yarn": "4.6.0"
},
"alias": {
"~": "./",
"src": "./src",
"hooks": "./src/hooks",
"consts": "./src/consts",
"contexts": "./src/contexts",
"styles": "./src/styles",
"svgs": "./src/assets/svgs",
"utils": "./src/utils",
"components": "./src/components",
"queries": "./src/hooks/queries"
},
"scripts": {
"clean": "rm -rf dist/ .parcel-cache ../.parcel-cache",
"start": "yarn start-devnet",
"start-devnet": "scripts/runEnv.sh devnet 'yarn parcel'",
"start-testnet": "scripts/runEnv.sh testnet 'yarn parcel'",
"start-mainnet": "scripts/runEnv.sh mainnet 'yarn parcel'",
"build": "yarn build-devnet",
"build-devnet": "scripts/runEnv.sh devnet 'yarn parcel build'",
"build-testnet": "scripts/runEnv.sh testnet 'yarn parcel build'",
"build-mainnet": "scripts/runEnv.sh mainnet 'yarn parcel build'",
"check-style": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"check-types": "tsc --noEmit",
"generate": "yarn generate-devnet",
"generate-devnet": "scripts/runEnv.sh devnet 'yarn codegen'",
"generate-testnet": "scripts/runEnv.sh testnet 'yarn codegen'",
"generate-mainnet": "scripts/runEnv.sh mainnet 'yarn codegen'",
"codegen": "graphql-codegen --config codegen.ts"
},
"devDependencies": {
"@graphprotocol/client-cli": "^2.2.22",
"@graphql-codegen/cli": "^3.3.1",
"@graphql-codegen/client-preset": "^3.0.1",
"@graphql-codegen/typescript": "^2.8.8",
"@graphql-codegen/typescript-operations": "^2.5.13",
"@parcel/transformer-svg-react": "^2.12.0",
"@parcel/watcher": "^2.4.1",
"@types/react": "^18.3.8",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@typescript-eslint/utils": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-parcel": "^1.10.6",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"eslint-utils": "^3.0.0",
"parcel": "^2.12.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"dependencies": {
"@kleros/ui-components-library": "^2.14.0",
"@kleros/vea-contracts": "workspace:^",
"@sentry/react": "^7.37.2",
"@sentry/tracing": "^7.37.2",
"@wagmi/chains": "^1.8.0",
"@wagmi/core": "^2.10.2",
"core-js": "^3.30.1",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"react-jazzicon": "^1.0.4",
"react-loading-skeleton": "^3.5.0",
"react-router-dom": "^6.26.2",
"react-use": "^17.5.1",
"styled-components": "^5.3.10",
"swr": "^2.2.5"
}
}