-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.54 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
{
"name": "autodeploy-blockscout",
"version": "0.0.1",
"description": "Autodeploy blockscout",
"scripts": {
"format": "prettier --write '*/**/*.*{js,sol,json,md,ts}'",
"format:check": "prettier --check '*/**/*.*{js,sol,json,md,ts}'",
"lint": "eslint --cache . && yarn lint:sol",
"lint:ts": "eslint -c .eslintrc.json --ext \"**/*.ts\" \"**/*.test.ts\"",
"lint:sol": "solhint 'contracts/**/*.sol'",
"createInstance": "ts-node --project ./tsconfig.json scripts/1-createInstance.ts",
"deployInstance": "ts-node --project ./tsconfig.json scripts/2-deployInstance.ts",
"getStatus": "ts-node --project ./tsconfig.json scripts/3-getStatus.ts",
"restart": "ts-node --project ./tsconfig.json scripts/4-restart.ts",
"stop": "ts-node --project ./tsconfig.json scripts/6-stop.ts",
"update": "ts-node --project ./tsconfig.json scripts/5-update.ts",
"getInstance": "ts-node --project ./tsconfig.json scripts/getInstance.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gelatodigital/relay-docs-examples"
},
"license": "ISC",
"devDependencies": {
"@tsconfig/recommended": "^1.0.6",
"@types/mocha": ">=9.1.0",
"@types/node": "^22.0.2",
"chai": "^4.3.8",
"dotenv": "^16.3.1",
"prettier": "^3.0.2",
"prettier-plugin-solidity": "^1.1.3",
"ts-node": ">=8.0.0",
"typescript": ">=4.5.0"
},
"lint-staged": {
"*.*{js,sol,json,md,ts,yml,yaml}": "prettier --write",
"*.*{ts,js}": "eslint -c .eslintrc.json"
},
"dependencies": {
"axios": "^1.7.2"
}
}