This repository has been archived by the owner on Oct 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.51 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
106
{
"private": true,
"name": "nft-badger",
"version": "0.1.2",
"scripts": {
"pre:prepare": "husky install",
"build": "next build",
"compile": "rm -rf build/contracts && truffle compile",
"dev": "next dev",
"format": "yarn format:sol && yarn format:ts",
"format:check": "prettier -c src",
"format:sol": "prettier -w contracts",
"format:ts": "prettier --write src",
"hint": "solhint 'contracts/**/*.sol'",
"lint": "yarn lint:ts && yarn lint:strict",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"lint:ts": "tsc --pretty --noEmit",
"migrate:dev": "rm -rf build/migrations && tsc migrations/*.ts --outDir build/migrations && truffle migrate --network development",
"migrate:ropsten": " tsc migrations/*.ts --outDir build/migrations && truffle migrate --network ropsten",
"push-release": "git push --follow-tags origin main",
"release": "standard-version",
"start": "next start",
"test": "jest",
"test:watch": "jest --watch",
"truffle": "truffle",
"typegen": "typechain --target=truffle-v5 --out-dir contracts/types 'build/contracts/*.json'",
"verify": "truffle run verify Router --network"
},
"dependencies": {
"@flatfile/react": "0.3.5",
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@rjsf/bootstrap-4": "^3.2.1",
"@rjsf/core": "^3.2.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.3.4",
"@truffle/hdwallet-provider": "^2.0.0",
"@types/lodash": "^4.14.177",
"@walletconnect/web3-provider": "^1.6.6",
"clsx": "^1.1.1",
"copy-to-clipboard": "^3.3.1",
"js-base64": "^3.7.2",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"moralis": "^0.0.184",
"next": "^12.0.4",
"next-transpile-modules": "^9.0.0",
"nookies": "^2.5.2",
"react": "^17.0.2",
"react-csv-importer": "^0.5.1",
"react-dom": "^17.0.2",
"react-hook-form": "^7.20.2",
"react-icons": "^4.3.1",
"react-moralis": "^0.3.11",
"realmono": "^0.1.0",
"rjsf-chakra-ui-experimental": "^1.1.0",
"use-realm": "^1.1.3",
"zustand": "^3.6.5"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@chainlink/contracts": "^0.2.2",
"@openzeppelin/contracts": "^4.4.2",
"@openzeppelin/test-environment": "^0.1.9",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@typechain/truffle-v5": "^7.0.0",
"@types/react": "^17.0.35",
"@types/tailwindcss": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.2",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"postcss": "^8.3.11",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"react-test-renderer": "^17.0.2",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"standard-version": "^9.3.2",
"tailwindcss": "^2.2.19",
"truffle": "^5.4.29",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.5.20",
"typechain": "^7.0.0",
"typescript": "^4.4.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}