-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.65 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
{
"author": "Reef Chain",
"bugs": "https://github.com/reef-defi/browser-extension/issues",
"homepage": "https://github.com/reef-defi/browser-extension#readme",
"license": "Apache-2",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/reef-defi/browser-extension.git"
},
"sideEffects": false,
"version": "1.0.23",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "polkadot-dev-build-ts && yarn build:zip && yarn build:rollup",
"build:extra": "yarn build:i18n && yarn build:ui",
"build:i18n": "i18next-scanner --config i18next-scanner.config.js",
"build:release": "polkadot-ci-ghact-build",
"build:rollup": "polkadot-exec-rollup --config",
"build:ui": "cd packages/extension && NODE_ENV=production yarn webpack --config webpack.extension.cjs --mode production",
"build:zip": "yarn build:zip:dst && yarn build:zip:src",
"build:zip:dst": "rm -rf ./master-build.zip && cd packages/extension/build && zip -r -FS ../../../master-build.zip .",
"build:zip:src": "rm -rf ./master-src.zip && zip -r -x '*build/*' -x '*node_modules*' -FS ./master-src.zip packages .editorconfig .eslintignore .eslintrc.js babel.config.cjs CHANGELOG.md CONTRIBUTING.md i18next-scanner.config.js jest.config.cjs LICENSE package.json README.md tsconfig.json yarn.lock",
"bump": "node bumpVersion.js",
"clean": "polkadot-dev-clean-build",
"lint": "polkadot-dev-run-lint",
"postinstall": "polkadot-dev-yarn-only",
"start": "yarn watch",
"test": "polkadot-dev-run-test --detectOpenHandles",
"test:one": "polkadot-dev-run-test --detectOpenHandles",
"watch": "cd packages/extension && yarn polkadot-exec-webpack --config webpack.watch.cjs --mode development --watch"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@reef-defi/dev": "^0.63.20",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"i18next-scanner": "^3.1.0",
"sinon-chrome": "^3.0.1"
},
"resolutions": {
"@ledgerhq/devices": "6.27.1",
"@ledgerhq/hw-transport-node-hid-noevents": "6.27.1",
"@ledgerhq/hw-transport-node-hid-singleton": "6.27.1",
"@ledgerhq/hw-transport-webhid": "6.27.1",
"@ledgerhq/hw-transport-webusb": "6.27.1",
"@polkadot/api": "~6.4.2",
"@polkadot/types": "~6.4.2",
"@reef-defi/keyring": "^7.8.2",
"@reef-defi/networks": "^7.8.2",
"@reef-defi/util": "^7.8.2",
"@reef-defi/util-crypto": "^7.8.2",
"@reef-defi/x-fetch": "^7.8.2",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"babel-core": "^7.0.0-bridge.0",
"safe-buffer": "^5.2.1",
"typescript": "^4.4.4"
}
}