forked from cardano-foundation/cardano-connect-with-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.21 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
{
"name": "@cardano-foundation/cardano-connect-with-wallet",
"license": "Apache-2.0",
"private": true,
"description": "This package aims to provide useful plain js and React.js libs, hooks and components to simplify the cardano dapp integration",
"workspaces": [
"react",
"core"
],
"scripts": {
"bundle": "npm run bundle:react && npm run bundle:core",
"bundle:react": "npm run rollup --prefix react",
"bundle:core": "npm run build --prefix core",
"bundle:html": "uglifyjs -c -m -o html/cardano-connect.min.js -- html/cardano-connect.js && minify html/cardano-connect.css > html/cardano-connect.min.css",
"install:react": "npm install --prefix react",
"install:core": "npm install --prefix core",
"build": "npm run build:react && npm run build:core",
"build:core": "npm run build --prefix core",
"build:react": "npm run build-storybook --prefix react",
"test": "npm run test:react",
"test:react": "npm test --prefix react",
"publish": "npm run publish:react && npm run publish:core",
"publish:react": "npm publish --prefix react",
"publish:core": "npm publish --prefix core"
},
"devDependencies": {
"minify": "^10.2.0",
"uglify-js": "^3.17.4"
}
}