-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.97 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
{
"version": "1.0.0",
"private": false,
"sideEffects": false,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"dev:example": "pnpm --filter @tangled3/example-react dev",
"dev:example-next": "pnpm --filter @tangled3/example-next dev",
"build": "pnpm build:solana && pnpm build:react",
"build:solana": "pnpm --filter @tangled3/solana-react build",
"build:react": "pnpm --filter @tangled3/react build",
"build:example": "pnpm --filter @tangled3/example-react build",
"build:example-next": "pnpm --filter @tangled3/example-next build",
"clean": "pnpm exec clean",
"prepare": "husky && husky install",
"lint": "eslint packages",
"lint:fix": "eslint packages --fix",
"format": "prettier --check . --config ./prettier.config.cjs",
"format:fix": "prettier --write . --config ./prettier.config.cjs",
"watch:react": "pnpm --filter @tangled3/react watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"cpy-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^3.2.4",
"standard-version": "^9.5.0",
"typescript": "^5.2.2"
},
"pnpm": {
"overrides": {
"@ledgerhq/devices": "6.27.1",
"@ledgerhq/errors": "6.16.3",
"@ledgerhq/hw-transport": "6.27.1",
"@ledgerhq/hw-transport-webhid": "6.27.1"
}
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write . --config ./prettier.config.cjs"
],
"*.{md,css,json}": "prettier --write . --config ./prettier.config.cjs"
}
}