-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "evire-gaming-framework",
"version": "1.0.0",
"description": "A blockchain gaming framework for the Evire ecosystem",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.{ts,tsx,json,sol}\"",
"compile": "truffle compile",
"migrate": "truffle migrate",
"deploy:testnet": "truffle migrate --network testnet",
"deploy:mainnet": "truffle migrate --network mainnet",
"generate-types": "typechain --target=truffle-v5 'build/contracts/*.json'",
"postinstall": "npm run generate-types"
},
"keywords": [
"blockchain",
"gaming",
"evire",
"ethereum",
"smart-contracts"
],
"author": "Evire Team",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.8.0",
"@truffle/hdwallet-provider": "^2.1.0",
"ethers": "^5.7.2",
"express": "^4.18.2",
"web3": "^1.8.1"
},
"devDependencies": {
"@typechain/truffle-v5": "^8.0.2",
"@types/express": "^4.17.14",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"chai": "^4.3.7",
"eslint": "^8.31.0",
"mocha": "^10.2.0",
"prettier": "^2.8.2",
"prettier-plugin-solidity": "^1.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/evireFW/Evire-AI-Framework.git"
},
"bugs": {
"url": "https://github.com/evireFW/Evire-AI-Framework/issues"
},
"homepage": "https://github.com/evireFW/Evire-AI-Framework#readme"
}