forked from polkadot-js/apps
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
109 lines (109 loc) · 3.82 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"bugs": "https://github.com/cennznet/ui/issues",
"engines": {
"node": ">=0.16 < 17.5.0",
"yarn": "^1.10.1"
},
"homepage": "https://github.com/cennznet/ui#readme",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/cennznet/ui.git"
},
"sideEffects": false,
"version": "0.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"analyze": "yarn run build && cd packages/apps && yarn run source-map-explorer build/main.*.js",
"build": "yarn run build:i18n && yarn run build:code",
"build:code": "NODE_ENV=production node ./scripts/cennznet-dev-build-ts.cjs",
"build:i18n": "i18next-scanner --config i18next-scanner.config.cjs",
"build:www": "rm -rf packages/apps/build && mkdir -p packages/apps/build && cp CNAME packages/apps/build && yarn run build:i18n && cd packages/apps && NODE_ENV=production webpack --config webpack.config.cjs",
"clean": "polkadot-dev-clean-build",
"clean:i18n": "rm -rf packages/apps/public/locales/en && mkdir -p packages/apps/public/locales/en",
"docs": "echo \"skipping docs\"",
"lint": "polkadot-dev-run-lint",
"postinstall": "polkadot-dev-yarn-only",
"start": "yarn clean && cd packages/apps && yarn webpack-cli serve --config webpack.serve.cjs --port 3000",
"test": "jest packages/react-api",
"vanitygen": "node packages/app-accounts/scripts/vanitygen.js"
},
"dependencies": {
"bignumber.js": "^9.0.1",
"merge-options": "^2.0.0",
"polished": "^3.4.4",
"semantic-ui-css": "^2.4.1",
"styled-components": "^5.3.1"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "^7.17.0",
"@babel/plugin-proposal-numeric-separator": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-proposal-pipeline-operator": "^7.12.1",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/register": "^7.17.0",
"@babel/runtime": "^7.17.0",
"@cennznet/api": "2.1.1-alpha.4",
"@cennznet/types": "2.1.1-alpha.4",
"@polkadot/dev": "0.64.18",
"@polkadot/ts": "^0.2.3",
"@types/bn.js": "^5.1.0",
"@types/chart.js": "^2.9.11",
"@types/file-saver": "^2.0.0",
"@types/i18next": "^13.0.0",
"@types/jest": "^27.4.0",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^5.1.3",
"@types/react-tooltip": "^3.11.0",
"@types/store": "^2.0.2",
"@types/styled-components": "^4.4.2",
"@types/styled-theming": "^2.2.2",
"@types/yargs": "^17.0.2",
"babel-plugin-transform-import-meta": "^2.1.1",
"empty": "^0.10.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"i18next-scanner": "^2.10.3",
"jest": "^27.5.1",
"jest-jasmine2": "^27.5.1",
"markdown-loader": "^5.1.0",
"react": "^17.0.2",
"react-dom": "^16.12.0",
"source-map-explorer": "^2.2.2",
"style-loader": "^1.1.3",
"thread-loader": "^3.0.4",
"url-loader": "^3.0.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-plugin-serve": "^0.12.1"
},
"resolutions": {
"@babel/cli": "7.16.0",
"@babel/code-frame": "7.16.7",
"@babel/compat-data": "7.16.8",
"@babel/core": "^7.17.5",
"@babel/generator": "7.17.3",
"@babel/parser": "^7.17.3",
"@babel/runtime": "7.17.2",
"@babel/types": "7.17.0",
"@polkadot/api-base": "7.8.1",
"@polkadot/dev": "0.64.18",
"@polkadot/keyring": "5.9.2",
"@polkadot/types": "7.8.1",
"@polkadot/types-codec": "7.8.1",
"@polkadot/ui-settings": "^1.0.2-1",
"@polkadot/util": "8.4.1",
"@polkadot/util-crypto": "5.9.2",
"@types/bn.js": "5.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"typescript": "^4.5.5"
}
}