mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
93 lines
2.8 KiB
JSON
93 lines
2.8 KiB
JSON
{
|
|
"name": "btc-wallet",
|
|
"version": "0.1.0",
|
|
"main": "node install.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "webpack-dev-server --config config/webpack.dev.js",
|
|
"build:dev": "cross-env NODE_ENV=production webpack --config config/webpack.dev.js",
|
|
"build:prod": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js"
|
|
},
|
|
"author": "Tlon Corp",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
|
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
|
|
"@babel/plugin-transform-runtime": "^7.10.5",
|
|
"@babel/preset-env": "^7.9.5",
|
|
"@babel/preset-react": "^7.9.4",
|
|
"@babel/preset-typescript": "^7.13.0",
|
|
"@types/lodash": "^4.14.171",
|
|
"@types/react-dom": "^17.0.9",
|
|
"@types/react-router-dom": "^5.1.8",
|
|
"@types/styled-components": "^5.1.11",
|
|
"@types/webpack-env": "^1.16.2",
|
|
"@welldone-software/why-did-you-render": "^6.1.1",
|
|
"babel-loader": "^8.1.0",
|
|
"babel-plugin-root-import": "^6.5.0",
|
|
"clean-webpack-plugin": "^3.0.0",
|
|
"cross-env": "^7.0.2",
|
|
"eslint": "^7.29.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-react": "^7.24.0",
|
|
"file-loader": "^6.0.0",
|
|
"html-webpack-plugin": "^4.2.0",
|
|
"husky": "^6.0.0",
|
|
"lint-staged": "^11.0.0",
|
|
"prettier": "^2.3.1",
|
|
"react-hot-loader": "^4.12.21",
|
|
"sass": "^1.26.5",
|
|
"sass-loader": "^8.0.2",
|
|
"ts-loader": "8.2.0",
|
|
"typescript": "^4.3.5",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.11",
|
|
"webpack-dev-server": "^3.10.3"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.10.5",
|
|
"@reach/disclosure": "^0.10.5",
|
|
"@reach/menu-button": "^0.10.5",
|
|
"@reach/tabs": "^0.10.5",
|
|
"@tlon/indigo-light": "^1.0.7",
|
|
"@tlon/indigo-react": "^1.2.22",
|
|
"@tlon/sigil-js": "^1.4.3",
|
|
"bip39": "^2.5.0",
|
|
"bitcoin-address-validation": "^2.0.1",
|
|
"bitcoinjs-lib": "^5.2.0",
|
|
"bs58check": "^2.1.2",
|
|
"buffer": "^6.0.3",
|
|
"classnames": "^2.2.6",
|
|
"css-loader": "^3.5.3",
|
|
"formik": "^2.2.0",
|
|
"fs-extra": "^8.1.0",
|
|
"lodash": "^4.17.11",
|
|
"markdown-to-jsx": "^7.1.2",
|
|
"moment": "^2.20.1",
|
|
"mousetrap": "^1.6.3",
|
|
"mv": "^2.1.1",
|
|
"promise": "^8.0.3",
|
|
"prompt": "^1.0.0",
|
|
"react": "^16.14.0",
|
|
"react-dom": "^16.14.0",
|
|
"react-router-dom": "^5.0.0",
|
|
"replace-in-file": "^4.1.1",
|
|
"style-loader": "^1.2.1",
|
|
"styled-components": "^5.2.3",
|
|
"styled-system": "^5.1.5",
|
|
"urbit-key-generation": "^0.19.0",
|
|
"urbit-ob": "^5.0.0",
|
|
"urbit-sigil-js": "^1.3.13"
|
|
},
|
|
"resolutions": {
|
|
"natives": "1.1.3"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": "eslint --cache --fix",
|
|
"*.{js,css,md}": "prettier --write"
|
|
}
|
|
}
|