-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "voice-clariah-node-api",
"version": "1.1.2",
"description": "",
"main": "app.js",
"author": {
"name": "Hans Christian Breuer",
"email": "hcbruer79@nomail.gitlab",
"url": "https://gitlab.com/hcbreuer79"
},
"repository": {
"type": "git",
"url": "https://github.com/acdh-oeaw/voice-api.git"
},
"contributors": [
{
"name": "Omar Siam",
"email": "omar.siam@oeaw.ac.at",
"url": "https://www.oeaw.ac.at/acdh/team/current-team/omar-siam"
}
],
"license": "MIT",
"engines": {
"node": "18.x",
"npm": "8.19.2"
},
"scripts": {
"build": "node DependencyLicenseGenerator.js > dependency-license-report.html && node node_modules/gulp/bin/gulp.js",
"start": "node app.js",
"test": "jest",
"serve": "nodemon --inspect app.js"
},
"comments": {
"docker test command line": "docker run --rm -v $(pwd):/tmp/app registry.gitlab.com/acdh-oeaw/docker/herokuish-for-cypress/master /bin/herokuish buildpack test",
"AutoDevOps Settungs": "POSTGRES_ENABLED=false #we don't use a DB so don't prepare it"
},
"dependencies": {
"chevrotain": "^10.1.2",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-jsdoc-swagger": "^1.6.7",
"sax": "^1.2.4"
},
"devDependencies": {
"async": "^3.2.3",
"del": "^6.0.0",
"git-describe": "^4.1.0",
"gulp": "^4.0.2",
"gulp-token-replace": "^1.1.5",
"jest": "^27.5.1",
"license-report": "^5.0.2"
},
"overrides": {
"chokidar": {
"glob-parent": "^6.0.2"
},
"glob-stream": {
"glob-parent": "^6.0.2"
}
}
}