-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (68 loc) · 2.88 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
{
"name": "df-artemis",
"version": "0.0.3",
"description": "Planet-targeted bounty mercenary system for Dark Forest",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"lint": "prettier --list-different 'contracts/**/*.sol'",
"prettier:contract": "prettier --write \"contracts/**/*.sol\"",
"hardhat:node": "hardhat node --hostname 0.0.0.0",
"hardhat:dev": "hardhat --network localhost",
"deploy:dev": "hardhat run scripts/deploy.ts --network localhost",
"hardhat:prod": "hardhat --network xdai",
"hardhat:mainnet": "hardhat --network mainnet",
"hardhat:ropsten": "hardhat --network ropsten",
"hardhat:redstoneTestnet": "hardhat --network redstoneTestnet",
"deploy:redstoneTestnet":"hardhat --network redstoneTestnet run scripts/deploy.ts",
"deploy:xdai": "hardhat run scripts/deploy.ts --network xdai",
"analysis:dev": "hardhat run scripts/analysis.ts --network localhost",
"analysis:xdai": "hardhat run scripts/analysis.ts --network xdai",
"export-abi": "hardhat export-abi",
"clear-abi": "hardhat clear-abi",
"prettier:plugin": "prettier --write \"plugins/**/*.{js,jsx}\"",
"start": "df-plugin-dev-server --glob plugins/*.jsx",
"build": "df-plugin-dev-server bundle --glob plugins/*.jsx --outdir=dest/"
},
"author": "DF Archon",
"license": "GPL-3.0",
"devDependencies": {
"@darkforest_eth/constants": "^6.7.29",
"@darkforest_eth/serde": "^6.7.29",
"@darkforest_eth/types": "^6.7.29",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"@projectsophon/df-plugin-dev-server": "^1.5.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/jest": "^28.1.8",
"chai": "^4.3.6",
"color": "^4.2.3",
"dotenv": "^16.0.1",
"ethers": "^5.7.0",
"graphql": "^16.6.0",
"hardhat": "^2.10.2",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0",
"solidity-coverage": "^0.7.21",
"styled-components": "^5.3.5",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4",
"urql": "^3.0.1"
}
}