-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.5 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
{
"name": "vegalabs-demo",
"version": "0.0.1",
"scripts": {
"postinstall": "yarn yarn-deduplicate yarn.lock",
"dev:mainnet": "cross-env NETWORK=mainnet yarn dev",
"dev:testnet": "cross-env NETWORK=testnet yarn dev",
"dev": "yarn clean && yarn codegen && better-npm-run dev",
"build": "yarn clean && yarn codegen && better-npm-run build",
"test": "jest && yarn lint",
"test:watch": "jest --watchAll",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand --watch",
"test:coverage": "jest --coverage --watch",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx && tsc --noEmit --incremental false --pretty",
"lint:autofix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"clean": "rm -rf .next",
"tsc:watch": "tsc --watch --noEmit --incremental false --pretty",
"codegen": "rm -rf ./src/api/generated && yarn codegen:typechain",
"codegen:typechain": "typechain --target web3-rxjs --out-dir src/api/generated/contracts **/abi/**/*.json"
},
"betterScripts": {
"node": {
"command": "node ./node_modules/.bin/cross-env",
"env": {
"TS_NODE_PROJECT": "webpack/tsconfig.json",
"TS_NODE_FILES": true,
"NODE_OPTIONS": "--max_old_space_size=12288"
}
},
"build": {
"command": "better-npm-run node next build"
},
"dev": {
"command": "next dev -p 8083"
}
},
"license": "MIT",
"dependencies": {
"@akropolis-web/primitives": "^0.6.90",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@eo-locale/react": "^1.5.1",
"@mui/icons-material": "^5.3.1",
"@mui/material": "^5.4.0",
"@mui/styles": "^5.3.0",
"@next/bundle-analyzer": "^12.0.10",
"@web3-wallets-kit/connect-wallet-connector": "^0.3.4",
"@web3-wallets-kit/core": "^0.3.4",
"@web3-wallets-kit/inpage-connector": "^0.2.4",
"better-npm-run": "^0.1.1",
"build-route-tree": "^1.0.2",
"classnames": "^2.3.1",
"core-decorators": "^0.20.0",
"final-form": "^4.20.6",
"next": "^12.0.10",
"ramda": "^0.28.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-dotdotdot": "^1.3.1",
"react-final-form": "^6.5.8",
"react-swipeable-views": "^0.14.0",
"reflect-metadata": "^0.1.13",
"rxjs": "6",
"ts-toolbelt": "^9.6.0",
"typedi": "^0.10.0",
"uuid": "^8.3.2",
"web3": "^1.7.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.17.0",
"@types/jest": "^27.4.0",
"@types/mkdirp": "^1.0.2",
"@types/ramda": "^0.27.64",
"@types/react-dom": "^17.0.11",
"@types/react-swipeable-views": "^0.13.1",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"tsconfig-paths": "^3.12.0",
"typechain": "^7.0.0",
"typechain-target-web3-rxjs": "^0.1.26",
"typescript": "^4.5.5",
"yarn-deduplicate": "^3.1.0"
},
"engines": {
"node": ">=14.0.0"
}
}