-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.69 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": "e2e-tests",
"private": true,
"scripts": {
"lint": "tsc --noEmit && eslint . --ext .js,.ts && prettier --check .",
"fix": "eslint . --ext .js,.ts --fix && prettier -w .",
"prepare": "husky install",
"test": "LOG_LEVEL=error vitest",
"test:ui": "LOG_LEVEL=error vitest --ui",
"update-env": "tsx scripts/update-env.ts"
},
"resolutions": {
"@polkadot/api": "^12.4.2",
"@polkadot/api-derive": "^12.4.2",
"@polkadot/types": "^12.4.2",
"@acala-network/api": "^6.1.3",
"@acala-network/sdk": "4.1.11",
"@acala-network/sdk-core": "4.1.11"
},
"dependencies": {
"@acala-network/chopsticks": "^0.14.2-1",
"@acala-network/chopsticks-testing": "^0.14.2-1",
"@acala-network/sdk": "4.1.11",
"@acala-network/sdk-core": "4.1.11",
"@polkadot/api": "12.4.2",
"@polkadot/util": "13.0.2",
"@polkawallet/bridge": "^0.1.7-13",
"@swc/core": "^1.6.1",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"lodash": "^4.17.21",
"typescript": "^5.4.5",
"unplugin-swc": "^1.4.5",
"vitest": "^1.6.0"
},
"devDependencies": {
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/ui": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"tsx": "^4.15.6"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css}": "prettier --write"
},
"packageManager": "[email protected]"
}