-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "gasless",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1",
"start:local-gsn": "node_modules/.bin/gsn start -n http://localhost:8545",
"start:ganache": "npx ganache-cli --networkId 1337 --chainId 1337",
"story": "node migrations/script.js",
"merge": "npx sol-merger \"./contracts/*.sol\" ./merged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sftwr-prjct-dev/gasless.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sftwr-prjct-dev/gasless/issues"
},
"homepage": "https://github.com/sftwr-prjct-dev/gasless#readme",
"dependencies": {
"@opengsn/gsn": "^2.1.0",
"@openzeppelin/contracts": "3.3.0",
"@uniswap/sdk": "3.0.3",
"bnc-onboard": "1.19.1",
"ethers": "5.0.29",
"ganache-cli": "6.12.2",
"next": "10.0.6",
"qrcode.react": "1.0.1",
"react": "17.0.1",
"react-copy-to-clipboard": "5.0.3",
"react-dom": "17.0.1",
"truffle-hdwallet-provider": "1.0.17",
"web3": "1.3.4",
"web3-providers-http": "1.3.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"jest": "^26.6.0",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"sol-merger": "3.1.0",
"tailwindcss": "^1.9.5",
"ts-jest": "^26.4.1",
"ts-node": "9.1.1",
"typescript": "^4.0.3"
}
}