Version 3 starter

This commit is contained in:
Jamie Curnow
2021-06-14 19:29:35 +10:00
parent 60fc57431a
commit 6205434140
642 changed files with 25817 additions and 32319 deletions

View File

@@ -1,48 +1,91 @@
{
"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-minify-webpack-plugin": "^0.3.1",
"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": "^4.13.1",
"nodemon": "^2.0.2",
"numeral": "^2.0.6",
"sass-loader": "^8.0.2",
"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": "1.0.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "5.12.0",
"@testing-library/react": "11.2.7",
"@types/humps": "^2.0.0",
"@types/jest": "26.0.23",
"@types/lodash": "4.14.169",
"@types/node": "15.3.0",
"@types/react": "17.0.5",
"@types/react-dom": "17.0.5",
"@types/react-router-dom": "5.1.7",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-eslint": "^10.1.0",
"date-fns": "2.21.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"humps": "^2.0.1",
"jest-date-mock": "1.0.8",
"jest-fetch-mock": "3.0.3",
"jest-junit": "^12.0.0",
"jest-localstorage-mock": "2.4.12",
"jest-runner-eslint": "0.10.0",
"lodash": "4.17.21",
"moment": "2.29.1",
"node-sass": "^5.0.0",
"prettier": "2.3.0",
"query-string": "7.0.0",
"react": "17.0.2",
"react-async": "10.0.1",
"react-dom": "17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"rooks": "5.0.2",
"styled-components": "5.3.0",
"tabler-react": "^2.0.0-alpha.1",
"typescript": "^4.2.4"
},
"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 ."
},
"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": 1,
"functions": 1,
"lines": 1,
"statements": 1
}
}
}
}