This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
105 lines (105 loc) · 2.42 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": "@renft/front",
"version": "1.0.0",
"author": "Nazariy Vavryk <[email protected]>",
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@types/bl": "^2.1.0",
"@types/classnames": "^2.2.11",
"@types/moment": "^2.13.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.0",
"axios": "^0.21.1",
"bl": "^4.1.0",
"canvas": "^2.6.0",
"dotenv": "^8.2.0",
"ethers": "^5.0.31",
"firebase": "^8.3.3",
"fs-extra": "^9.1.0",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"hardhat": "^2.0.10",
"husky": "4",
"moment": "^2.29.1",
"next": "10.0.5",
"nprogress": "^0.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-tippy": "^1.4.0",
"sass": "^1.32.8",
"typescript": "^4.2.4",
"web3modal": "^1.9.3",
"xhr2": "^0.2.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.9",
"@types/jsdom": "^16.2.9",
"@types/nprogress": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint"
}
},
"keywords": [
"NFT",
"Rent",
"Lend",
"ERC721",
"ERC1155",
"DeFi",
"DAO",
"Fairlaunch"
],
"scripts": {
"prebuild": "./scripts/prebuild.sh",
"start": "next start",
"dev": "yarn prebuild && next dev",
"build": "next build",
"test": "next test",
"eject": "next eject",
"lint": "eslint --ext .ts,.tsx --fix",
"format": "prettier --write .ts .tsx"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"license": "UNLICENSED",
"private": true,
"contributors": [
{
"name": "Nazariy Vavryk",
"email": "[email protected]"
},
{
"name": "Sundeep Charan Ramkumar",
"email": "[email protected]"
}
]
}