-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "astar-e2e-tests",
"version": "0.1.0",
"author": "Stake Technologies <devops@stake.co.jp>",
"license": "MIT",
"private": true,
"packageManager": "yarn@4.5.1",
"scripts": {
"lint": "tsc --noEmit && eslint && prettier --check .",
"fix": "eslint --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"
},
"dependencies": {
"@acala-network/chopsticks": "^1.0",
"@acala-network/chopsticks-testing": "^1.0",
"@polkadot/api": "^15.0",
"@swc/core": "^1.10.0",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"lodash": "^4.17.21",
"typescript": "5.7.2",
"unplugin-swc": "^1.5.1",
"vitest": "^3.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/eslint__js": "^8.42.3",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@vitest/ui": "^3.0",
"eslint": "^9.16.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript-eslint": "8.17.0"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix && prettier --write"
}
}