forked from polkadot-js/extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 2 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
{
"repository": "https://github.com/polkadot-js/extension",
"author": "Jaco Greeff <[email protected]>",
"license": "Apache-2",
"version": "0.35.0-beta.0",
"private": true,
"workspaces": [
"packages/*"
],
"resolutions": {
"@polkadot/api": "^1.34.0-beta.3",
"@polkadot/keyring": "^3.4.1",
"@polkadot/types": "^1.34.0-beta.3",
"@polkadot/util": "^3.4.1",
"@polkadot/util-crypto": "^3.4.1",
"babel-core": "^7.0.0-bridge.0",
"safe-buffer": "^5.2.1",
"typescript": "^4.0.2"
},
"scripts": {
"build": "yarn build:i18n && yarn build:code && yarn build:zip",
"build:code": "NODE_ENV=production polkadot-dev-build-ts",
"build:i18n": "i18next-scanner --config i18next-scanner.config.js",
"build:release": "polkadot-ci-ghact-build",
"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 .babelrc.js .editorconfig .eslintignore .eslintrc.js babel.config.js CHANGELOG.md CONTRIBUTING.md i18next-scanner.config.js jest.config.js lerna.json LICENSE package.json README.md tsconfig.json yarn.lock",
"lint": "polkadot-dev-run-lint",
"lint:css": "stylelint './packages/**/src/**/*.tsx'",
"clean": "polkadot-dev-clean-build",
"postinstall": "polkadot-dev-yarn-only",
"start": "yarn watch",
"test": "polkadot-dev-run-test",
"watch": "cd packages/extension && yarn polkadot-exec-webpack --config webpack.config.js --watch"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@polkadot/dev": "^0.55.51",
"@polkadot/typegen": "^1.34.0-beta.3",
"@types/jest": "^26.0.13",
"copy-webpack-plugin": "^6.1.0",
"i18next-scanner": "^2.11.0",
"sinon-chrome": "^3.0.1",
"stylelint": "^13.7.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1"
}
}