forked from matter-labs/zksync-sso
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.95 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
{
"name": "zksync-account-sdk",
"description": "ZKsync SSO tooling",
"type": "module",
"private": true,
"author": "Matter Labs <zksync.io>",
"license": "MIT",
"keywords": [
"zksync",
"account-abstraction",
"EIP7579"
],
"scripts": {
"prepare": "husky",
"graph": "pnpm nx graph",
"dev:demo": "pnpm nx run-many -t serve -p auth-server demo-app",
"fmt": "pnpm prettier --write .",
"lint": "pnpm run lint:eslint && pnpm run lint:markdown && pnpm run lint:spelling && pnpm run lint:prettier",
"lint:fix": "pnpm eslint --fix --ignore-pattern 'packages/*' --ignore-pattern 'examples/*' . && pnpm nx affected -t lint --fix && pnpm prettier --write . | grep -v 'unchanged' | xargs",
"lint:eslint": "pnpm nx run-many -t lint --all && pnpm eslint --ignore-pattern 'packages/*' --ignore-pattern 'examples/*' .",
"lint:markdown": "markdownlint-cli2 '**/*.md'",
"lint:spelling": "cspell .",
"lint:prettier": "prettier --check ."
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "9.11.1",
"@nx/eslint": "19.8.0",
"@nx/js": "19.8.2",
"@nx/nuxt": "19.8.0",
"@nx/vite": "19.8.0",
"@simplewebauthn/browser": "^10.0.0",
"@simplewebauthn/server": "^10.0.1",
"@simplewebauthn/types": "^10.0.0",
"@stylistic/eslint-plugin": "2.8.0",
"@swc-node/register": "1.10.9",
"@swc/core": "1.7.26",
"cspell": "8.14.4",
"eslint": "9.11.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "15.9.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"markdownlint-cli2": "0.14.0",
"nuxt": "3.13.2",
"nx": "19.8.6",
"prettier": "3.3.3",
"typescript": "5.6.2",
"typescript-eslint": "8.7.0",
"viem": "^2.21.14",
"zksync-sso": "workspace:*"
},
"nx": {
"includedScripts": []
},
"packageManager": "[email protected]",
"dependencies": {
"prettier-plugin-solidity": "^1.4.1"
}
}