-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·85 lines (85 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
{
"name": "@rmrk-team/evm-template",
"version": "2.5.4",
"description": "Template for new projects using RMRK protocol on EVM",
"scripts": {
"test": "hardhat typechain && hardhat test",
"compile": "hardhat compile",
"typechain": "hardhat typechain",
"deploy:catalog": "hardhat run scripts/run-deploy-catalog.ts",
"deploy:contracts": "hardhat run scripts/run-deploy.ts",
"deploy:utils": "hardhat run scripts/run-deploy-utils.ts",
"prettier": "prettier --write .",
"build": "tsc && resolve-tspaths",
"dev": "NODE_ENV=development nodemon -r tsconfig-paths/register",
"prod": "NODE_ENV=production nodemon -r tsconfig-paths/register",
"dev:test": "NODE_ENV=test nodemon -r tsconfig-paths/register",
"dev:moon": "NODE_ENV=test nodemon -r tsconfig-paths/register --exec 'hardhat run src/app.ts --network moonbaseAlpha'",
"production": "node ./build/app.js",
"start": "export NODE_ENV=test && ts-node index.ts"
},
"engines": {
"node": ">=18"
},
"keywords": [],
"author": "@rmrk-team",
"license": "Apache-2.0",
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^5.0.2",
"@rmrk-team/evm-contracts": "^2.5.4",
"@types/jimp": "^0.2.28",
"@types/sharp": "^0.32.0",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"express": "^4.19.2",
"express-validator": "^7.1.0",
"express-winston": "^4.2.0",
"jimp": "^0.22.12",
"sharp": "^0.33.5",
"winston": "^3.13.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"chai": "^4.4.1",
"csv-parse": "^5.5.6",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^6.13.0",
"hardhat": "^2.22.12",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.9",
"nodemon": "^3.1.4",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.3.1",
"solc": "0.8.21",
"solidity-coverage": "0.8.6-sha1.0",
"squirrelly": "^8.0.8",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "^5.5.3"
}
}