forked from finos/git-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2 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
{
"name": "@finos/git-proxy",
"version": "0.0.1",
"description": "Git proxy for scanning and inspecting a 'git push' ",
"scripts": {
"client": "react-scripts start",
"clientinstall": "npm install --prefix client",
"server": "node index.js",
"start": "concurrently \"npm run server\" \"npm run client",
"build": "react-scripts build",
"ui-test": "react-scripts",
"server-test-ci": "mocha",
"server-test": "mocha",
"eject": "react-scripts eject"
},
"author": "Paul Groves",
"license": "Apache-2.0",
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "4.9.1",
"axios": "^0.20.0",
"bit-mask": "^1.0.2",
"body-parser": "^1.19.0",
"chartist": "0.10.1",
"classnames": "2.2.6",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"diff2html": "^3.1.13",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"express-session": "^1.17.1",
"history": "4.10.1",
"lodash": "^4.17.20",
"mocha": "^7.2.0",
"moment": "^2.29.1",
"mongodb": "^3.6.3",
"nedb": "^1.8.0",
"passport": "^0.4.1",
"passport-activedirectory": "^1.0.4",
"passport-local": "^1.0.0",
"password-hash": "^1.2.2",
"perfect-scrollbar": "1.5.0",
"prop-types": "15.7.2",
"react": "^16.13.1",
"react-chartist": "0.14.3",
"react-dom": "^16.13.1",
"react-html-parser": "^2.0.2",
"react-router-dom": "5.2.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"react-scripts": "^4.0.0",
"eslint": "^7.11.0",
"eslint-config-google": "^0.14.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-standard": "^4.0.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}