-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.43 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.43 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"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": "^3.1.0",
"@celo/contractkit": "^1.2.4",
"@celo/contracts": "^0.0.8",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@sentry/react": "^6.13.3",
"@sentry/tracing": "^6.13.3",
"@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",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"next": "10.2.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-toastify": "^8.0.3",
"react-window": "^1.8.6",
"regl": "1",
"tailwindcss": "^3.0.15",
"theme-ui": "^0.10.0",
"twin.macro": "^2.8.0",
"rebass": "^4.0.7"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.2.0",
"@typechain/ethers-v5": "^6.0.5",
"@types/gl-matrix": "2",
"@types/lodash": "^4.14.176",
"@types/node": "^14.14.37",
"@types/react": "17.0.2",
"@types/react-modal": "^3.12.0",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"autoprefixer": "^10.4.7",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-twin": "^1.0.2",
"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",
"@types/rebass": "^4.0.8",
"polished": "^4.1.2",
"@types/styled-components": "^5.1.9",
"styled-components": "^5.3.0",
"react-feather": "^2.0.9"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
},
"lint-staged": {
"*.{js,css,md,ts,tsx,json}": "prettier --write"
},
"prettier": {}
}