-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (109 loc) · 2.77 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
104
105
106
107
108
109
110
111
{
"name": "cafeteria-server",
"main": "./index.mjs",
"version": "1.5.1",
"description": "Server side application for INU Cafeteria.",
"scripts": {
"test": "jest --coverage test/unit",
"setupdb": "node -r esm setup/setup-db.mjs",
"start": "node -r esm index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inu-appcenter/cafeteria-server.git"
},
"keywords": [
"inu",
"cafeteria"
],
"author": "potados99",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/inu-appcenter/cafeteria-server/issues"
},
"homepage": "https://github.com/inu-appcenter/cafeteria-server#readme",
"dependencies": {
"@hapi/boom": "^9.0.0",
"@hapi/good": "^9.0.0",
"@hapi/good-console": "^8.1.2",
"@hapi/good-squeeze": "^5.2.1",
"@hapi/hapi": "^19.2.0",
"@hapi/inert": "^6.0.2",
"@hapi/joi": "^17.1.0",
"@hapi/vision": "^6.0.1",
"aws-sdk": "^2.791.0",
"axios": "^0.20.0",
"axios-cookiejar-support": "^1.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"bcrypt": "^5.0.0",
"blipp": "^4.0.1",
"cheerio": "^1.0.0-rc.3",
"esm": "^3.2.25",
"hapi-auth-jwt2": "^9.0.1",
"hapi-swagger": "^12.1.1",
"jsonwebtoken": "^8.5.1",
"minimist": "^1.2.5",
"moment": "^2.27.0",
"mysql2": "^2.1.0",
"node-fetch": "^2.6.1",
"qs": "^6.9.4",
"rand-token": "^0.4.0",
"sequelize": "^5.22.3",
"stack-trace": "0.0.10",
"stream": "0.0.2",
"tough-cookie": "^4.0.0",
"winston": "^3.3.3",
"winston-cloudwatch": "^2.3.2",
"winston-daily-rotate-file": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-babel": "^5.3.1",
"jest": "^25.5.4",
"sequelize-mock": "^0.10.2",
"mockdate": "^3.0.2"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.?(m)js?(x)",
"**/?(*.)(spec|test).?(m)js?(x)"
],
"collectCoverageFrom": [
"**/*.{mjs,js,}",
"!index.mjs",
"!config.mjs",
"!test/**",
"!lib/domain/constants/**",
"!lib/domain/entities/**",
"!lib/domain/repositories/**",
"!lib/domain/security/**",
"!lib/domain/usecases/**",
"!lib/domain/validators/**",
"!lib/infrastructure/database/**",
"!lib/infrastructure/webserver/**",
"!lib/infrastructure/uicoop/**",
"!**/node_modules/**",
"!**/coverage/**"
],
"testEnvironment": "node",
"transform": {
"^.+\\.m?js$": "babel-jest"
},
"transformIgnorePatterns": [
"./node_modules/"
],
"moduleFileExtensions": [
"js",
"mjs"
],
"coverageThreshold": {
"global": {
"statements": 70
}
}
}
}