-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
118 lines (118 loc) · 3.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@finos/git-proxy",
"version": "1.7.0",
"description": "Deploy custom push protections and policies on top of Git.",
"scripts": {
"cli": "node ./packages/git-proxy-cli/index.js",
"client": "vite --config vite.config.js",
"clientinstall": "npm install --prefix client",
"server": "node index.js",
"start": "concurrently \"npm run server\" \"npm run client\"",
"build": "vite build",
"test": "NODE_ENV=test mocha --exit",
"test-coverage": "nyc npm run test",
"test-coverage-ci": "nyc --reporter=lcovonly --reporter=text npm run test",
"prepare": "node ./scripts/prepare.js",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\" \"test/**/*.{js,jsx,ts,tsx,json}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx,json}\" \"test/**/*.{js,jsx,ts,tsx,json}\"",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,css,md,json,scss} test/**/*.{js,jsx,ts,tsx,json} --config ./.prettierrc",
"gen-schema-doc": "node ./scripts/doc-schema.js",
"cypress:run": "cypress run"
},
"bin": {
"git-proxy": "./index.js",
"git-proxy-all": "concurrently 'npm run server' 'npm run client'"
},
"workspaces": [
"./packages/git-proxy-cli"
],
"author": "Paul Groves",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/finos/git-proxy"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "4.11.3",
"@primer/octicons-react": "^19.8.0",
"@seald-io/nedb": "^4.0.2",
"axios": "^1.6.0",
"bcryptjs": "^2.4.3",
"bit-mask": "^1.0.2",
"body-parser": "^1.20.1",
"classnames": "2.5.1",
"concurrently": "^8.0.0",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"diff2html": "^3.4.33",
"express": "^4.18.2",
"express-http-proxy": "^2.0.0",
"express-rate-limit": "^7.1.5",
"express-session": "^1.17.1",
"history": "5.3.0",
"isomorphic-git": "^1.27.1",
"jsonschema": "^1.4.1",
"load-plugin": "^6.0.0",
"lodash": "^4.17.21",
"lusca": "^1.7.0",
"moment": "^2.29.4",
"mongodb": "^5.0.0",
"nodemailer": "^6.6.1",
"parse-diff": "^0.11.1",
"passport": "^0.7.0",
"passport-activedirectory": "^1.0.4",
"passport-local": "^1.0.0",
"perfect-scrollbar": "^1.5.5",
"prop-types": "15.8.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-html-parser": "^2.0.2",
"react-router-dom": "6.26.2",
"simple-git": "^3.25.0",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@vitejs/plugin-react": "^4.0.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cypress": "^13.11.0",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.0",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"prettier": "^3.0.0",
"sinon": "^19.0.2",
"vite": "^4.4.2"
},
"optionalDependencies": {
"@esbuild/darwin-arm64": "^0.18.20",
"@esbuild/darwin-x64": "^0.23.0",
"@esbuild/linux-x64": "0.23.0",
"@esbuild/win32-x64": "0.23.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}