forked from modernizing-java-applications-book/web-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.02 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
{
"name": "web-nodejs",
"description": "Web UI for the CoolStore Microservices App",
"version": "1.0.0",
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"scripts": {
"lint": "xo",
"prepare": "echo 'To confirm CVE compliance, run \"npm run security-check\"' ",
"security-check": "nsp check",
"ci": "npm run lint && npm run coveralls",
"release": "standard-version -a",
"openshift": "nodeshift --strictSSL=false --dockerImage=registry.access.redhat.com/rhoar-nodejs/nodejs-10",
"postinstall": "license-reporter report -s && license-reporter save -s --xml licenses.xml",
"start": "node .",
"sonar": "node sonar-project.js"
},
"main": "./bin/www",
"standard-version": {
"scripts": {
"postbump": "npm run postinstall && node release.js",
"precommit": "git add .openshiftio/application.yaml licenses/"
}
},
"xo": {
"space": 2,
"rules": {
"space-before-function-paren": [
"error",
"always"
]
}
},
"files": [
"package.json",
"app",
"view",
"server.js",
"licenses"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcouliba/cloud-native-workshop.git"
},
"bugs": {
"url": "https://github.com/mcouliba/cloud-native-workshop/issues"
},
"homepage": "https://github.com/mcouliba/cloud-native-workshop#readme",
"devDependencies": {
"js-yaml": "~3.13.1",
"nodeshift": "~3.0.0",
"nyc": "~14.1.0",
"proxyquire": "^2.0.0",
"rhoaster": "^0.4.1",
"sonarqube-scanner": "^2.6.0",
"standard-version": "^6.0.1",
"supertest": "^4.0.2",
"tap-spec": "~5.0.0",
"xo": "^0.32.1"
},
"dependencies": {
"@patternfly/patternfly": "^2.36.2",
"angular": ">=1.7.9",
"angular-route": ">=1.7.9",
"body-parser": "~1.19.0",
"cors": "^2.8.5",
"debug": "^4.0.1",
"env-var": "^7.3.0",
"express": "4.16.4",
"gulp": "^4.0.2",
"gulp-ng-config": "^1.5.1",
"kube-probe": "^0.3.0",
"license-reporter": "^1.3.0",
"webpack": ">=1.11.0"
}
}