-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "regionx-e2e-tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc > /dev/null",
"lint": "eslint e2e_tests --fix",
"format": "npx prettier --write './e2e_tests/**/*.ts'",
"test": "chmod +x ./scripts/test-runner.sh && ./scripts/test-runner.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@polkadot/api": "^11.2.1",
"@polkadot/keyring": "^12.6.2",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"coretime-utils": "^0.3.2",
"typescript": "^4.1.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.8.1",
"prettier-plugin-organize-imports": "^3.2.0"
}
}