-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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
{
"name": "gymlib-ucpa-facilitator",
"type": "module",
"version": "0.0.0",
"description": "",
"author": "",
"license": "AGPL-3.0",
"keywords": [],
"main": "index.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"db:new-migration": "npx knex --knexfile ./db/knexfile.js migrate:make $migrationname",
"db:create": "node ./db/create-database.js",
"db:delete": "node ./db/drop-database.js",
"db:empty": "node ./db/empty-database.js",
"db:migrate": "knex --knexfile ./db/knexfile.js migrate:latest",
"db:rollback:latest": "knex --knexfile ./db/knexfile.js migrate:down",
"db:prepare": "npm run db:delete && npm run db:create && npm run db:migrate",
"db:seed": "knex --knexfile ./db/knexfile.js seed:run",
"db:reset": "npm run db:prepare && npm run db:seed",
"lint": "eslint .",
"start": "node index.js",
"test": "NODE_ENV=test npm run db:reset && NODE_ENV=test mocha --exit --recursive --reporter=${MOCHA_REPORTER:-dot} tests"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hapi": "^21.3.10",
"cron": "^3.1.7",
"dayjs": "^1.11.13",
"ical-generator": "^8.0.0",
"imapflow": "^1.0.164",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mailparser": "^3.7.1",
"passkit-generator": "^3.1.11",
"pg": "^8.13.0",
"pino": "^9.4.0",
"puppeteer-core": "^23.5.0",
"undici": "^6.20.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.1",
"chai": "^5.1.1",
"dotenv": "^16.4.5",
"eslint": "^9.10.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^10.7.3",
"nock": "^14.0.0-beta.14",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0"
}
}