mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
124 lines
3.6 KiB
JSON
124 lines
3.6 KiB
JSON
{
|
|
"name": "lightning-terminal",
|
|
"version": "0.0.1",
|
|
"description": "Lightning Terminal",
|
|
"repository": "https://github.com/lightninglabs/lightning-terminal",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "BROWSER=none react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test --env=jest-environment-jsdom",
|
|
"test:ci": "cross-env CI=true yarn test --coverage",
|
|
"eject": "react-scripts eject",
|
|
"lint": "eslint --ext .ts,.tsx --ignore-path .eslintignore .",
|
|
"tsc": "tsc --noEmit",
|
|
"protos": "node ./scripts/build-protos.js",
|
|
"storybook": "start-storybook -p 9009 -s public",
|
|
"build-storybook": "build-storybook -s public"
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "11.4.0",
|
|
"@emotion/styled": "11.3.0",
|
|
"@improbable-eng/grpc-web": "0.14.0",
|
|
"big.js": "6.1.1",
|
|
"bootstrap": "4.6.1",
|
|
"copy-to-clipboard": "3.3.1",
|
|
"d3": "6.3.1",
|
|
"date-fns": "2.14.0",
|
|
"debug": "4.1.1",
|
|
"file-saver": "2.0.2",
|
|
"history": "4.10.1",
|
|
"http-proxy-middleware": "1.0.4",
|
|
"i18next": "19.5.1",
|
|
"i18next-browser-languagedetector": "5.0.0",
|
|
"lodash": "4.17.21",
|
|
"lottie-web": "5.7.0",
|
|
"mobx": "6.3.2",
|
|
"mobx-react-lite": "3.2.0",
|
|
"mobx-utils": "6.0.4",
|
|
"rc-select": "11.5.0",
|
|
"rc-tooltip": "4.2.1",
|
|
"react": "17.0.2",
|
|
"react-dom": "17.0.2",
|
|
"react-i18next": "11.7.0",
|
|
"react-router": "5.2.0",
|
|
"react-scripts": "5.0.0",
|
|
"react-toastify": "6.0.6",
|
|
"react-virtualized": "9.21.2",
|
|
"reactour": "1.18.0",
|
|
"styled-components": "5.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@storybook/addon-actions": "5.3.19",
|
|
"@storybook/addon-docs": "5.3.19",
|
|
"@storybook/addon-links": "5.3.19",
|
|
"@storybook/addons": "5.3.19",
|
|
"@storybook/preset-create-react-app": "3.1.2",
|
|
"@storybook/react": "5.3.19",
|
|
"@testing-library/jest-dom": "5.11.5",
|
|
"@testing-library/react": "11.1.1",
|
|
"@testing-library/user-event": "12.2.0",
|
|
"@types/big.js": "6.1.1",
|
|
"@types/d3": "6.2.0",
|
|
"@types/debug": "4.1.5",
|
|
"@types/file-saver": "2.0.1",
|
|
"@types/google-protobuf": "3.7.2",
|
|
"@types/history": "4.7.6",
|
|
"@types/jest": "27.4.1",
|
|
"@types/lodash": "4.14.157",
|
|
"@types/node": "14.0.14",
|
|
"@types/react": "17.0.13",
|
|
"@types/react-dom": "17.0.8",
|
|
"@types/react-router": "5.1.8",
|
|
"@types/react-virtualized": "9.21.10",
|
|
"@types/reactour": "1.17.1",
|
|
"@typescript-eslint/eslint-plugin": "5.17.0",
|
|
"@typescript-eslint/parser": "5.17.0",
|
|
"cross-env": "7.0.2",
|
|
"eslint-config-prettier": "8.5.0",
|
|
"eslint-plugin-prettier": "4.0.0",
|
|
"eslint-plugin-react": "7.29.4",
|
|
"google-protobuf": "3.12.2",
|
|
"jest-canvas-mock": "2.3.0",
|
|
"jest-environment-jsdom": "27.5.1",
|
|
"prettier": "2.1.2",
|
|
"sass": "1.43.4",
|
|
"ts-protoc-gen": "0.12.0",
|
|
"typescript": "4.1.6"
|
|
},
|
|
"resolutions": {
|
|
"history": "4.10.1"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "react-app",
|
|
"ignorePatterns": [
|
|
"src/types/generated/**/*.js"
|
|
]
|
|
},
|
|
"jest": {
|
|
"globalSetup": "./src/setupTestsGlobal.ts",
|
|
"resetMocks": false,
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{js,jsx,ts,tsx}",
|
|
"!src/**/*.d.ts",
|
|
"!src/__(stories|mocks)__/**/*.{ts,tsx}",
|
|
"!src/types/**/*.{js,ts}",
|
|
"!src/i18n/**/*.{js,ts}",
|
|
"!src/util/tests/**/*.{ts,tsx}",
|
|
"!src/setupProxy.js",
|
|
"!src/index.tsx"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
}
|
|
}
|