-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 3.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "unique-sdk",
"repository": "https://github.com/UniqueNetwork/unique-sdk",
"main": "unique.js",
"description": "Api SDK for Unique",
"author": "Anton Drelin <drelin@usetech.com>, Konstantin Pozdnikin <kpozdnikin@usetech.com>",
"version": "0.83.2-28",
"license": "Apache-2",
"homepage": ".",
"private": true,
"workspaces": [
"packages/*"
],
"resolutions": {
"@polkadot/api": "^5.5.1",
"@polkadot/api-contract": "^5.5.1",
"@polkadot/hw-ledger": "^7.2.1",
"@polkadot/keyring": "^7.2.1",
"@polkadot/networks": "^7.2.1",
"@polkadot/phishing": "^0.6.257",
"@polkadot/types": "^5.5.1",
"@polkadot/types-known": "^5.5.1",
"@polkadot/types-support": "^5.5.1",
"@polkadot/util": "^7.2.1",
"@polkadot/util-crypto": "^7.2.1",
"@polkadot/wasm-crypto": "^4.1.2",
"babel-core": "^7.0.0-bridge.0",
"styled-components": "^5.2.0",
"tar": "^6.1.9",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0"
},
"scripts": {
"analyze": "yarn clean && BUILD_ANALYZE=1 yarn run build:code && yarn source-map-explorer packages/apps/build/main.*.js",
"audit": "yarn npm audit --recursive --all",
"audit:ci": "yarn npm audit --recursive --all --severity high",
"build": "yarn run build:i18n && yarn run build:code",
"build:code": "NODE_ENV=production yarn polkadot-dev-build-ts",
"build:i18n": "i18next-scanner --config i18next-scanner.config.js && node ./scripts/i18nSort.cjs",
"build:release:electron": "yarn build && yarn build:electron && yarn postinstall:electron",
"build:release:ipfs": "node scripts/ipfsUpload.cjs",
"build:release:ghpages": "yarn polkadot-ci-ghact-docs",
"build:release:www": "yarn polkadot-ci-ghact-build && yarn build:release:ipfs && yarn build:release:ghpages",
"build:robohash": "node scripts/robohash.cjs",
"build:www": "rm -rf packages/apps/build && mkdir -p packages/apps/build && yarn run build:i18n && cd packages/apps && yarn webpack --config webpack.config.cjs",
"build:devElectronRenderer": "cd packages/apps-electron && yarn webpack --config webpack.renderer.cjs",
"docs": "echo \"skipping docs\"",
"clean": "polkadot-dev-clean-build",
"clean:i18n": "rm -rf packages/apps/public/locales/en && mkdir -p packages/apps/public/locales/en",
"start": "yarn clean && cd packages/apps && yarn webpack-cli serve --config webpack.serve.cjs --port 3000"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.3",
"@crustio/crust-pin": "^0.0.1",
"@pinata/sdk": "^1.1.23",
"@polkadot/dev": "^0.62.60",
"@polkadot/ts": "^0.4.4",
"@types/bn.js": "^4.11.6",
"@types/chart.js": "^2.9.34",
"@types/file-saver": "^2.0.3",
"@types/jest": "^27.0.1",
"@types/node": "^16.3.3",
"@types/store": "^2.0.2",
"@types/styled-components": "^5.1.12",
"@types/styled-theming": "^2.2.5",
"commander": "^8.0.0",
"concurrently": "^6.2.1",
"devtron": "^1.4.0",
"dnslink-cloudflare": "^3.0.0",
"i18next-scanner": "^3.0.0",
"source-map-explorer": "^2.5.2",
"styled-components": "^5.3.0",
"webpack-manifest-plugin": "^3.0.0"
},
"dependencies": {
"@polkadot/api-contract": "^4.17.2-3",
"@polkadot/extension-dapp": "^0.39.3",
"@types/lodash": "^4.14.168",
"@types/lodash.memoize": "^4.1.6",
"@xstate/react": "^1.1.0",
"bignumber": "^1.1.0",
"deep-equal": "^2.0.5",
"lodash": "^4.17.21",
"prismjs": "^1.24.1",
"protobufjs": "^6.10.2",
"thread-loader": "^3.0.1",
"xstate": "^4.15.0"
}
}