-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.23 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.23 KB
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
{
"name": "gearbox-terminal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:test-network": "env-cmd -f .env.test next dev",
"build": "next build",
"start": "next start -p $PORT",
"lint:ts": "eslint . --ext .tsx,.ts",
"format:ts": "eslint . --ext .tsx,.ts --fix",
"lint:css": "stylelint \"**/*.styled.tsx\"",
"merkle": "cross-env CLAIMS_GENERATE=true ts-node --files --project ./node.tsconfig.json utils/node-scripts/generate-merkle-claims.ts",
"hardhat": "env-cmd -f .env.test npx hardhat node"
},
"dependencies": {
"@diesellabs/gearbox-sdk": "^0.0.223",
"@redux-saga/core": "^1.1.3",
"@types/react-transition-group": "^4.4.2",
"axios": "^0.24.0",
"crt-terminal": "^1.0.6",
"dotenv": "^10.0.0",
"ethers": "^5.4.6",
"next": "^10.2.3",
"next-compose-plugins": "^2.2.1",
"next-redux-wrapper": "^7.0.0-rc.2",
"react": "^17.0.2",
"react-content-loader": "^6.0.3",
"react-device-detect": "^1.15.0",
"react-dom": "^17.0.2",
"react-player": "^2.9.0",
"react-redux": "^7.2.4",
"react-transition-group": "^4.4.2",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-saga": "^1.1.3",
"sass": "^1.38.1",
"styled-components": "^5.3.0",
"terser-webpack-plugin": "^4.2.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.46.0"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/react": "^17.0.3",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"hardhat": "^2.8.0",
"prettier": "^2.2.1",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.1.6",
"url-loader": "^4.1.1"
},
"optionalDependencies": {
"@ethersproject/abi": "^5.4.1",
"ethereumjs-util": "^7.1.0",
"fsevents": "^2.3.2",
"react-is": "^17.0.2"
}
}