-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 1.55 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
{
"name": "@requestnetwork/web-components",
"version": "0.1.0",
"private": true,
"description": "Request Network Web Components",
"main": "index.js",
"workspaces": [
"./packages/*",
"./shared/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "find . -path './node_modules' -prune -o -name 'dist' -type d -exec rm -rf '{}' \\; -printf '%p deleted\\n' 2>/dev/null",
"deep-clean": "find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \\;",
"build": "turbo run build",
"build:form": "turbo run build --filter=@requestnetwork/create-invoice-form",
"build:dashboard": "turbo run build --filter=@requestnetwork/invoice-dashboard",
"build:stakeholder": "turbo run build --filter=@requestnetwork/add-stakeholder",
"build:payment-widget": "turbo run build --filter=@requestnetwork/payment-widget",
"build:single-invoice": "turbo run build --filter=@requestnetwork/single-invoice",
"link:react": "npm link $npm_config_app_path/node_modules/react $npm_config_app_path/node_modules/react-dom",
"link:all": "npm run link:react --app-path=$npm_config_app_path && for d in packages/*; do (cd $d && npm link); done",
"unlink:all": "for d in packages/*; do (cd $d && npm unlink); done"
},
"devDependencies": {
"turbo": "^2.0.6"
},
"author": "",
"license": "MIT",
"packageManager": "[email protected]",
"dependencies": {
"@changesets/cli": "^2.27.10",
"@requestnetwork/currency": "0.26.0",
"@tanstack/svelte-query": "^5.64.2",
"bits-ui": "^0.21.12"
}
}