-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.76 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.76 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
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
{
"name": "vechain-dapp-kit",
"private": true,
"description": "A TypeScript library that facilitates seamless interaction between vechain wallets (veworld, sync2) and dApps.",
"license": "MIT",
"workspaces": [
"examples/*",
"packages/*",
"tests/*"
],
"scripts": {
"install:all": "yarn && yarn run build:deps",
"build": "turbo run build",
"build-react-kit": "turbo run build --filter='@vechain/dapp-kit-react'",
"build:deps": "turbo build --no-daemon --filter='@vechain/*'",
"prepare:release": "ts-node scripts/prepare-packages.ts",
"publish:release": "ts-node scripts/publish-packages.ts",
"clean": "rm -rf .turbo .parcel-cache .reports build && npx turbo@latest run clean",
"dev": "turbo run dev --filter='@vechain/*'",
"gh-pages-build": "turbo run gh-pages-build",
"lint": "turbo run lint",
"prepare": "husky install",
"preview": "turbo run preview",
"purge": "npx turbo@latest run purge && rm -rf node_modules",
"reinstall": "yarn clean && yarn purge && yarn && yarn run build:deps",
"stop-preview": "kill -2 $(ps aux | grep '[t]urbo run preview' | awk '{print $2}')",
"test": "turbo run test --filter='@vechain/*'",
"test:e2e": "turbo run preview > /dev/null 2>&1 & turbo run test:e2e; yarn stop-preview",
"test:e2e:ci": "turbo run preview & turbo run test:e2e:headless; yarn stop-preview",
"test:e2e:headless": "turbo run preview > /dev/null 2>&1 & turbo run test:e2e:headless; yarn stop-preview"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"eslint"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@changesets/cli": "^2.28.1",
"@commitlint/config-conventional": "^19.8.0",
"commitlint": "^19.8.0",
"eslint": "^9.24.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"punycode": "^2.3.1",
"ts-node": "^10.9.2",
"turbo": "^2.5.0",
"typescript": "5.8.3",
"typescript-eslint": "^8.29.1"
},
"packageManager": "[email protected]",
"resolutions": {
"sha.js": "2.4.12",
"next": "15.4.8",
"pbkdf2": "3.1.3",
"axios": "1.12.0",
"set-cookie-parser": "2.7.2",
"undici": "6.15.0",
"@fastify/busboy": "3.2.0",
"esbuild": "0.25.0",
"webpack-dev-server": "5.2.1",
"on-headers": "1.1.0"
}
}