-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "schulcloud-calendar",
"homepage": "https://dBildungscloud.de",
"main": "src/",
"keywords": [
"postgres",
"schul-cloud",
"calendar"
],
"license": "AGPL-3.0",
"engines": {
"node": "22",
"npm": ">=9"
},
"scripts": {
"start": "node src",
"debug": "node --watch --inspect=4949 src",
"linter": "eslint src",
"test": "cross-env NODE_ENV=test DB_HOST=localhost DB_USERNAME=node DB_PASSWORD=node DB_DATABASE=schulcloud_calendar_test mocha --exit --t 10000 './test/**/*.test.js'",
"test:integration": "cross-env NODE_ENV=test DB_HOST=localhost DB_USERNAME=node DB_PASSWORD=node DB_DATABASE=schulcloud_calendar_test mocha --exit --t 10000 './test/**/*.integration.test.js'",
"test:unit": "mocha --exit --t 10000 './test/**/*.unit.test.js'"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^3.1.3",
"express": "^4.17.1",
"moment": "^2.22.2",
"pg-promise": "^10.7.3",
"serve-favicon": "^2.5.0",
"uuid": "~3.0.1",
"winston": "^3.2.0",
"winston-daily-rotate-file": "^4.4.2",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@types/node": "^18.14.0",
"chai": "^3.5.0",
"eslint": "^4.18.2",
"mocha": "^7.1.1",
"nock": "^11.9.1",
"rewire": "^5.0.0",
"supertest": "^4.0.2"
},
"resolutions": {
"minimatch": "^3.0.5",
"flat": "^5.0.1"
}
}