forked from finos/git-proxy
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.31 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.31 KB
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@finos/git-proxy",
"version": "1.13.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": "tsx index.ts",
"start": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm run build-ui && npm run build-lib",
"build-ui": "vite build",
"build-lib": "./scripts/build-for-publish.sh",
"restore-lib": "./scripts/undo-build.sh",
"check-types": "tsc",
"test": "NODE_ENV=test ts-mocha './test/*.js' --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": "^3.0.2",
"bit-mask": "^1.0.2",
"body-parser": "^1.20.1",
"classnames": "2.5.1",
"concurrently": "^9.0.0",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"diff2html": "^3.4.33",
"env-paths": "^2.2.1",
"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",
"openid-client": "^6.2.0",
"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.28.2",
"simple-git": "^3.25.0",
"uuid": "^11.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",
"@types/express": "^5.0.1",
"@types/express-http-proxy": "^1.6.6",
"@types/lodash": "^4.17.15",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.5",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"@vitejs/plugin-react": "^4.0.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cypress": "^14.0.0",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^9.0.0",
"mocha": "^10.8.2",
"nyc": "^17.0.0",
"prettier": "^3.0.0",
"sinon": "^19.0.2",
"ts-mocha": "^11.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vite": "^4.5.13",
"vite-tsconfig-paths": "^5.1.4"
},
"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"
]
}
}