This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
forked from Celo-Fi/romulus-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "romulus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"typechain": "typechain --target=ethers-v5 'src/**/abis/**/*.json' --outDir src/generated/",
"lint": "eslint .",
"build": "CI='' npm run typechain && next build",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@celo-tools/use-contractkit": "npm:@poofcash/use-contractkit@^1.0.1",
"@celo/contractkit": "^1.2.4",
"@celo/contracts": "^0.0.8",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@types/react-modal": "^3.12.0",
"@ubeswap/sdk": "^2.1.0",
"@ubeswap/solidity-create2-deployer": "^0.6.1",
"copy-to-clipboard": "^3.3.1",
"ethers": "^5.1.0",
"feather-icons": "^4.28.0",
"formik": "^2.2.6",
"gl-matrix": "2",
"moment": "^2.29.1",
"next": "10.1.3",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-modal": "^3.14.3",
"react-window": "^1.8.6",
"regl": "1",
"theme-ui": "^0.10.0"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.2.0",
"@typechain/ethers-v5": "^6.0.5",
"@types/gl-matrix": "2",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.24.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.1",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.2.1",
"typechain": "^4.0.3",
"typescript": "^4.2.3"
},
"lint-staged": {
"*.{js,css,md,ts,tsx,json}": "prettier --write"
},
"prettier": {},
"resolutions": {
"@celo/contractkit": "^1.2.4"
}
}