forked from polkadot-js/apps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.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
{
"version": "0.40.0-beta.51",
"private": true,
"engines": {
"node": ">=10.13.0",
"yarn": "^1.10.1"
},
"homepage": ".",
"workspaces": [
"packages/*"
],
"resolutions": {
"@polkadot/api": "^1.4.0-beta.46",
"@polkadot/api-contract": "^1.4.0-beta.46",
"@polkadot/keyring": "^2.5.1",
"@polkadot/typegen": "^1.4.0-beta.46",
"@polkadot/types": "^1.4.0-beta.46",
"@polkadot/util": "^2.5.1",
"@polkadot/util-crypto": "^2.5.1",
"babel-core": "^7.0.0-bridge.0",
"typescript": "^3.8.2"
},
"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_modules/@polkadot/dev/scripts/polkadot-dev-build-ts.js",
"build:i18n": "i18next-scanner --config i18next-scanner.config.js",
"build:www": "rm -rf packages/apps/build && mkdir -p packages/apps/build && yarn run build:i18n && cd packages/apps && NODE_ENV=production webpack --config webpack.config.js",
"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",
"lint": "polkadot-dev-run-lint",
"postinstall": "polkadot-dev-yarn-only",
"test": "jest packages/app-claims/src",
"vanitygen": "node packages/app-accounts/scripts/vanitygen.js",
"start": "cd packages/apps && webpack --config webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/register": "^7.8.3",
"@babel/runtime": "^7.8.4",
"@polkadot/dev": "^0.41.3",
"@polkadot/ts": "^0.2.3",
"@polkadot/typegen": "^1.4.0-beta.46",
"@types/bn.js": "^4.11.6",
"@types/chart.js": "^2.9.11",
"@types/file-saver": "^2.0.0",
"@types/i18next": "^13.0.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": "^15.0.2",
"empty": "^0.10.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"i18next-scanner": "^2.10.3",
"markdown-loader": "^5.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"source-map-explorer": "^2.2.2",
"style-loader": "^1.1.3",
"thread-loader": "^2.1.3",
"url-loader": "^3.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-plugin-serve": "^0.12.1"
}
}