-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.59 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
{
"name": "root",
"description": "Sygma Widget Monorepo",
"version": "1.0.0",
"main": "index.js",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/sygmaprotocol/sygma-widget"
},
"author": "Sygmaprotocol Product Team",
"license": "LGPL-3.0-or-later",
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"node": ">=18.10.0"
},
"devDependencies": {
"@chainsafe/eslint-config": "^2.1.1",
"eslint": "^8.48.0",
"eslint-plugin-lit": "^1.9.1",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]",
"scripts": {
"demo": "yarn workspace @buildwithsygma/sygmaprotocol-widget run dev",
"clean": "yarn workspaces foreach --all -pt run clean",
"build": "yarn workspaces foreach --all -pt run build",
"lint": "yarn workspaces foreach --all -pt run lint",
"test:unit": "yarn workspaces foreach --all -pt run test:unit",
"build:widget": "yarn workspace @buildwithsygma/sygmaprotocol-widget build:preview",
"build:react-widget": "yarn workspace @buildwithsygma/sygmaprotocol-react-widget build",
"build:react-widget-app": "yarn workspace @buildwithsygma/react-widget-app build",
"lint:widget": "yarn workspace @buildwithsygma/sygmaprotocol-widget lint",
"lint:react-widget": "yarn workspace @buildwithsygma/sygmaprotocol-react-widget lint"
},
"resolutions": {
"@polkadot/api": "10.7.2",
"@polkadot/util": "12.5.1",
"@polkadot/util-crypto": "12.5.1",
"@polkadot/wasm-bridge": "7.2.2",
"@polkadot/keyring": "12.5.1",
"@polkadot/wasm-crypto": "7.2.2"
}
}