-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "e2e-tests",
"private": true,
"scripts": {
"lint": "tsc --noEmit && eslint . --ext .js,.ts",
"fix": "eslint . --ext .js,.ts --fix",
"test": "vitest",
"test:ui": "vitest --ui",
"update-env": "tsx scripts/update-env.ts",
"update-known-good": "tsx scripts/update-env.ts --update-known-good",
"postinstall": "husky install"
},
"type": "module",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"dependencies": {
"@e2e-test/networks": "workspace:*",
"@swc/core": "^1.7.26",
"lodash": "^4.17.21",
"typescript": "^5.6.2",
"vitest": "^1.6.0"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitest/ui": "^2.1.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"unplugin-swc": "^1.5.1",
"vite-tsconfig-paths": "^5.0.1"
},
"lint-staged": {
"*.{js,ts}": "yarn fix"
}
}