Moved v3 code from NginxProxyManager/nginx-proxy-manager-3 to NginxProxyManager/nginx-proxy-manager

This commit is contained in:
Jamie Curnow
2022-05-12 08:47:31 +10:00
parent 4db34f5894
commit 2110ecc382
830 changed files with 38168 additions and 36635 deletions

View File

@ -1,47 +1,111 @@
{
"name": "nginx-proxy-manager",
"version": "0.0.0",
"description": "A beautiful interface for creating Nginx endpoints",
"main": "js/index.js",
"devDependencies": {
"@babel/core": "^7.9.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"backbone": "^1.4.0",
"backbone.marionette": "^4.1.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.0",
"ejs-lint": "^1.0.1",
"ejs-loader": "^0.3.6",
"ejs-webpack-loader": "^2.2.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.4",
"imports-loader": "^0.8.0",
"jquery": "^3.5.0",
"jquery-mask-plugin": "^1.14.16",
"jquery-serializejson": "^2.9.0",
"marionette.approuter": "^1.0.2",
"marionette.templatecache": "^1.0.0",
"messageformat": "^2.3.0",
"messageformat-loader": "^0.8.1",
"mini-css-extract-plugin": "^0.9.0",
"moment": "^2.24.0",
"node-sass": "^6.0.1",
"nodemon": "^2.0.2",
"numeral": "^2.0.6",
"sass-loader": "10.2.0",
"style-loader": "^1.1.3",
"tabler-ui": "git+https://github.com/tabler/tabler.git#00f78ad823311bc3ad974ac3e5b0126198f0a813",
"underscore": "^1.12.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-visualizer-plugin": "^0.1.11"
},
"scripts": {
"build": "webpack --mode production",
"watch": "webpack --watch --mode development"
},
"author": "Jamie Curnow <jc@jc21.com>",
"license": "MIT"
"name": "nginxproxymanager",
"version": "3.0.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^1.8.3",
"@emotion/react": "^11",
"@emotion/styled": "^11.6.0",
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "12.1.2",
"@types/humps": "^2.0.1",
"@types/jest": "27.4.0",
"@types/lodash": "4.14.178",
"@types/node": "17.0.15",
"@types/react": "17.0.39",
"@types/react-dom": "17.0.11",
"@types/react-router-dom": "5.3.3",
"@types/react-table": "^7.7.9",
"@types/styled-components": "5.1.22",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-eslint": "^10.1.0",
"classnames": "^2.3.1",
"country-flag-icons": "^1.4.20",
"date-fns": "2.28.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"formik": "^2.2.9",
"framer-motion": "^6",
"humps": "^2.0.1",
"jest-date-mock": "1.0.8",
"jest-fetch-mock": "3.0.3",
"jest-junit": "^13.0.0",
"jest-localstorage-mock": "2.4.18",
"jest-runner-eslint": "1.0.0",
"lodash": "4.17.21",
"moment": "2.29.1",
"node-sass": "^7.0.1",
"prettier": "2.5.1",
"query-string": "7.1.1",
"react": "^17.0.2",
"react-async": "10.0.1",
"react-dom": "17.0.2",
"react-focus-lock": "^2.8.1",
"react-icons": "^4.3.1",
"react-intl": "^5.24.6",
"react-markdown": "^8.0.1",
"react-query": "^3.34.19",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"react-table": "^7.7.0",
"rooks": "5.10.0",
"tmp": "^0.2.1",
"typescript": "^4.5.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "yarn jest --config jest.eslint.js --watch",
"lint:ci": "yarn lint --watchAll=false",
"test": "react-scripts test",
"test:coverage": "yarn test --coverage --watchAll=false",
"test:ci": "yarn test:coverage",
"eject": "react-scripts eject",
"prettier": "prettier \"**/*.+(js|json|yml|css|ts|tsx)\"",
"format": "yarn prettier -- --write",
"lint:fix": "eslint --fix --ext .ts --ext .tsx .",
"locale-extract": "formatjs extract 'src/**/*.tsx'",
"locale-compile": "formatjs compile-folder src/locale/src src/locale/lang",
"check-locales": "./check-locales.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"globalSetup": "<rootDir>/globalSetup.js",
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/testUtils/*"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
},
"devDependencies": {
"@formatjs/cli": "^4.8.2",
"@types/country-flag-icons": "^1.2.0"
}
}