-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.14 KB
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
{
"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",
"update-env": "tsx scripts/update-env.ts"
},
"dependencies": {
"@acala-network/chopsticks": "^1.2.3",
"@acala-network/chopsticks-testing": "^1.2.3",
"@polkadot/api": "^16.4.5",
"@swc/core": "^1.13.5",
"axios": "^1.13.2",
"dotenv": "^17.2.1",
"lodash": "^4.17.21",
"reflect-metadata": "^0.2.2",
"typescript": "5.9.2",
"unplugin-swc": "^1.5.7",
"vitest": "^3.2.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/lodash": "^4.17.20",
"@types/node": "^24.3.0",
"eslint": "^9.34.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"typescript-eslint": "8.51.0"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix && prettier --write"
}
}