forked from ar-io/testnet-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.27 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
{
"name": "@ar-io/arns-pilot",
"version": "0.1.6",
"private": true,
"scripts": {
"build": "yarn clean && node build.js",
"clean": "rimraf [ dist cache ]",
"format:check": "prettier . --check --cache",
"format:fix": "prettier . --write",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"test": "yarn build && jest tests --runInBand",
"evolve": "yarn ts-node ./tools/evolve-contract.ts"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^18.15.7",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"ajv": "^8.12.0",
"arlocal": "^1.1.60",
"arweave": "^1.13.7",
"axios": "^0.26.0",
"axios-retry": "^3.2.4",
"dotenv": "^16.3.1",
"esbuild": "^0.17.12",
"eslint": "^6.7.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.4.3",
"jsonschema": "^1.4.1",
"prettier": "^2.2.1",
"replace-in-file": "^6.2.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"typescript": "4.3.5",
"uuid": "^9.0.0",
"warp-contracts": "^1.4.18",
"warp-contracts-plugin-deploy": "^1.0.1"
},
"resolutions": {
"arweave": "1.13.7"
}
}