-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.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
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
{
"name": "fantasy-campaign",
"version": "0.1.0",
"private": true,
"scripts": {
"web:start": "craco start",
"web:build": "craco build",
"web:test": "craco test",
"web:eject": "craco eject",
"lint": "eslint --ext .js,.ts,.tsx src/",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx test/",
"circuits:test": "yarn jest ./circuits/circuits.test.ts",
"circuits:compile": "node ./circuits/compile.js && yarn circuits:copy",
"circuits:copy": "cp ./circuits/circuit_final.key ./public/circuit_final.key && cp ./circuits/circuit_js/circuit.wasm ./public/circuit.wasm",
"circuits:ptau": "sh ./circuits/ptau.sh",
"circuits:check": "node circuits/checkFullProve.js",
"circuits:generate-maze": "node ./circuits/generateMaze.js",
"contracts:compile": "npx hardhat compile",
"contracts:typechain": "npx hardhat typechain",
"contracts:deploy": "npx hardhat run ./scripts/deploy.ts --network localhost",
"circomcheck": "yarn why circom",
"node:start": "npx hardhat node"
},
"dependencies": {
"@craco/craco": "^6.4.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"blake-hash": "^2.0.0",
"circomlib": "^2.0.2",
"circomlibjs": "^0.1.0",
"ffjavascript": "^0.2.41",
"lodash": "^4.17.21",
"node-ts": "^5.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.33.4",
"react-scripts": "4.0.3",
"snarkjs": "^0.4.10",
"styled-components": "^5.3.3",
"typescript": "^4.1.2",
"wasm-loader": "^1.3.0",
"web-vitals": "^1.0.1",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@chainlink/contracts": "^0.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@typechain/ethers-v5": "^8.0.2",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.177",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.15",
"chai": "^4.3.4",
"circom_tester": "^0.0.9",
"dotenv": "^10.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.1",
"hardhat": "^2.6.8",
"hardhat-typechain": "^0.3.5",
"latest": "^0.2.0",
"prettier": "^2.4.1",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^6.0.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}