-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.37 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
{
"private": true,
"name": "zdk",
"version": "5.0.0",
"description": "ZDK is the official frontend kit to get you started building dApps with the Zoo Protocol.",
"author": "Zoo Labs Foundation",
"license": "MIT",
"workspaces": [
"demo",
"sdk",
"ui"
],
"scripts": {
"lint": "prettier --write .",
"demo": "yarn workspace zdk-demo dev",
"dev": "parcel watch sdk ui --no-cache",
"clean": "yarn workspaces foreach --exclude primitives --exclude ssr-testing run clean",
"types:check": "tsc --skipLibCheck --noEmit",
"build": "yarn build:config && yarn build:packages && yarn build:cleanup",
"build:config": "cp tsconfig.production.json tsconfig.json",
"build:packages": "parcel build --no-cache sdk ui && yarn build:fix-type-defs",
"build:fix-type-defs": "node ./scripts/fix-type-defs-imports",
"build:cleanup": "cp tsconfig.production.json tsconfig.json",
"publish:stable": "yarn bump:stable && yarn clean && yarn build && yarn workspaces foreach --no-private --exclude zdk --exclude demo npm publish --tolerate-republish --access public",
"changelog": "yarn workspaces foreach --no-private --exclude zdk --exclude demo run changelog && git add -A; git commit -m 'changelog: update changelog'",
"bump:stable": "yarn version apply --all",
"reset": "yarn clean && rm -rf node_modules .yarn/cache .parcel-cache"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@parcel/optimizer-data-url": "2.8.3",
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-inline-string": "2.8.3",
"@parcel/transformer-typescript-tsc": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"buffer": "^6.0.3",
"ethers": "^5.7.2",
"gitlog": "^4.0.4",
"parcel": "^2.8.3",
"prettier": "^2.8.4",
"process": "^0.11.10",
"replace-in-files": "^3.0.0",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=12",
"yarn": ">=2"
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/preset-typescript": "^7.18.6",
"@parcel/babel-plugin-transform-runtime": "^2.8.3",
"@parcel/babel-preset-env": "^2.8.3",
"@parcel/config-default": "^2.8.3",
"@types/react-flatpickr": "^3.8.8",
"next-remote-watch": "^2.0.0",
"wagmi": "^0.11.5"
}
}