-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
92 lines (92 loc) · 3.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "iota-monorepo",
"private": true,
"license": "Apache-2.0",
"scripts": {
"test": "turbo run test",
"test:dev": "turbo run test -- --run",
"icons": "pnpm --filter ./apps/icons",
"explorer-dev": "turbo --filter iota-explorer --filter apps-backend dev",
"wallet-dev": "turbo --filter ./apps/wallet --filter apps-backend dev",
"wallet-dashboard-dev": "turbo --filter ./apps/wallet-dashboard --filter apps-backend dev",
"ui-kit": "turbo --filter ./apps/ui-kit",
"explorer": "turbo --filter iota-explorer",
"wallet": "turbo --filter ./apps/wallet",
"wallet-dashboard": "turbo --filter ./apps/wallet-dashboard",
"sdk": "turbo --filter ./sdk/typescript",
"bcs": "turbo --filter ./sdk/bcs",
"apps-backend": "turbo --filter apps-backend",
"iota-docs": "turbo --filter iota-docs",
"changeset-publish": "pnpm changeset publish",
"changeset-version": "pnpm changeset version && pnpm --filter @iota/iota-sdk codegen:version",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"prettier:fix:watch": "onchange '**' -i -f add -f change -j 5 -- prettier -w --ignore-unknown {{file}}",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
"prepare": "husky"
},
"pnpm": {
"overrides": {
"node-notifier": "10.0.0",
"async": "3.2.2",
"nth-check": "2.0.1",
"yaml@<2.2.2": ">=2.2.2",
"semver@<7.5.2": ">=7.5.2",
"postcss@<8.4.31": ">=8.4.31",
"braces": ">=3.0.3",
"path-to-regexp@0.1.7": "0.1.10",
"path-to-regexp@2.2.1": "3.3.0",
"path-to-regexp@3.2.0": "3.3.0",
"body-parser": ">=1.20.3",
"dset": "3.1.4",
"eslint": "8.57.1",
"mermaid@10.9.1": "10.9.3",
"http-proxy-middleware": "2.0.7",
"cross-spawn": "7.0.5"
}
},
"engines": {
"pnpm": ">=9.0.0"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH",
"ROOT_HAS_DEV_DEPENDENCIES"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@manypkg/cli": "^0.21.4",
"@tanstack/eslint-plugin-query": "^5.35.6",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^8.2.2",
"eslint": "^8.45.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-license-check": "link:linting/license-check",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unused-imports": "^3.2.0",
"graphql-config": "^5.0.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.3.1",
"prettier-plugin-tailwindcss": "^0.4.1",
"tsx": "^3.12.7",
"turbo": "^2.1.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.12.0"
},
"dependencies": {
"copy-text-to-clipboard": "^3.2.0"
},
"packageManager": "pnpm@9.6.0"
}