-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.3 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
{
"private": true,
"name": "reservoir-kit",
"version": "0.0.0",
"description": "ReservoirKit is the official frontend kit to get you started building dApps with the ReservoirProtocol.",
"author": "Reservoir Protocol",
"license": "MIT",
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"lint": "prettier --write .",
"demo": "yarn workspace reservoir-kit-demo dev",
"dev": "parcel watch 'packages/*' --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": "mv tsconfig.json tsconfig.tmp.json && mv tsconfig.production.json tsconfig.json",
"build:packages": "parcel build 'packages/*' --no-cache && yarn build:fix-type-defs",
"build:fix-type-defs": "node ./scripts/fix-type-defs-imports",
"build:cleanup": "mv tsconfig.json tsconfig.production.json && mv tsconfig.tmp.json tsconfig.json",
"publish:stable": "yarn bump:stable && yarn clean && yarn build && yarn workspaces foreach --no-private --exclude reservoir-kit --exclude demo npm publish --tolerate-republish --access public",
"changelog": "yarn workspaces foreach --no-private --exclude reservoir-kit --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.6.2",
"@parcel/packager-ts": "2.6.2",
"@parcel/transformer-inline-string": "2.6.2",
"@parcel/transformer-typescript-tsc": "^2.6.2",
"@parcel/transformer-typescript-types": "^2.6.2",
"@types/node": "^17.0.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"buffer": "^6.0.3",
"ethers": "^5.6.9",
"gitlog": "^4.0.4",
"parcel": "^2.6.2",
"prettier": "^2.5.1",
"process": "^0.11.10",
"replace-in-files": "^3.0.0",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=12",
"yarn": ">=2"
},
"packageManager": "[email protected]",
"dependencies": {
"@types/react-flatpickr": "^3.8.7",
"next-remote-watch": "^1.0.0"
}
}