-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "germanzero-api",
"version": "1.0.0",
"description": "An API to access GermanZero",
"scripts": {
"start": "node src",
"lint": "eslint src",
"test": "nyc mocha test",
"update-version": "git show -s >info.txt; git add info.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GermanZero-de/api.git"
},
"author": "Joachim Schirrmacher",
"license": "MIT",
"bugs": {
"url": "https://github.com/GermanZero-de/api/issues"
},
"homepage": "https://github.com/GermanZero-de/api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"btoa": "^1.2.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"event-stream": "^4.0.1",
"express": "^4.17.1",
"express-winston": "^4.0.1",
"handlebars": "^4.5.3",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.0",
"nodemailer": "^6.3.1",
"swagger-ui-express": "^4.1.2",
"triple-beam": "^1.3.0",
"winston": "^3.2.1",
"yaml": "^1.7.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"pre-commit": [
"lint",
"test",
"update-version"
]
}