forked from finos/git-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.98 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
{
"name": "@finos/git-proxy",
"version": "1.1.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",
"ui-test": "vite",
"server-test-ci": "mocha --exit",
"server-test": "mocha --exit",
"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 --fix . --ext .js,.jsx",
"gen-schema-doc": "node ./scripts/doc-schema.js"
},
"workspaces": [
"./packages/git-proxy-cli"
],
"bin": "./index.js",
"author": "Paul Groves",
"license": "Apache-2.0",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "4.11.3",
"@seald-io/nedb": "^4.0.2",
"axios": "^1.6.0",
"bit-mask": "^1.0.2",
"body-parser": "^1.20.1",
"chai-http": "^4.3.0",
"chartist": "0.10.1",
"classnames": "2.5.1",
"concurrently": "^8.0.0",
"cors": "^2.8.5",
"diff2html": "^3.4.33",
"email-validator": "^2.0.4",
"express": "^4.18.2",
"express-http-proxy": "^2.0.0",
"express-rate-limit": "^7.1.5",
"express-session": "^1.17.1",
"generate-password": "^1.5.1",
"history": "5.3.0",
"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",
"passport": "^0.7.0",
"passport-activedirectory": "^1.0.4",
"passport-local": "^1.0.0",
"password-hash": "^1.2.2",
"prop-types": "15.8.1",
"react": "^16.13.1",
"react-chartist": "0.14.4",
"react-dom": "^16.13.1",
"react-html-parser": "^2.0.2",
"react-router-dom": "6.22.3",
"uuid": "^9.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@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",
"eslint": "^8.0.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.0",
"vite": "^4.4.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}