-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.99 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
{
"name": "btree-node",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "b.tree backend based on nodejs, fastify and knex.js, objections.js",
"author": "Hannes Oberreiter",
"license": "AGPL-3.0",
"homepage": "https://github.com/HannesOberreiter/btree_server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/HannesOberreiter/btree_server.git"
},
"bugs": {
"url": "https://github.com/HannesOberreiter/btree_server/issues"
},
"keywords": [],
"main": "./dist/app.bootstrap.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"scripts": {
"serve": "nodemon",
"build": "tsc",
"migrate": "knex migrate:latest",
"dev:init": "ENVIRONMENT=development knex migrate:latest && ENVIRONMENT=development knex seed:run",
"dev:serve": "ENVIRONMENT=development nodemon --delay 2000ms",
"dev:serve:us": "ENVIRONMENT=development SERVER=us nodemon --delay 2000ms",
"dev:build": "tsc --watch",
"dev:knex": "ENVIRONMENT=development knex",
"dev:knex:us": "ENVIRONMENT=development SERVER=us knex",
"test:e2e": "ENVIRONMENT=test npx mocha ./test/e2e/00-api.e2e.test.cjs --R spec --ui bdd --env test --timeout 5000",
"test:watch": "ENVIRONMENT=test npx mocha ./test/e2e/00-api.e2e.test.cjs --watch dist test --env test",
"ci:e2e": "ENVIRONMENT=ci npx mocha ./test/e2e/00-api.e2e.test.cjs --timeout 5000",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@fastify/compress": "^7.0.0",
"@fastify/cookie": "^9.0.0",
"@fastify/helmet": "^11.0.0",
"@fastify/multipart": "^8.3.0",
"@fastify/rate-limit": "^9.0.1",
"@fastify/session": "^10.4.0",
"ajv-formats": "^3.0.1",
"archiver": "^7.0.1",
"close-with-grace": "^1.2.0",
"connect-redis": "^7.0.0",
"csv-parse": "^5.5.6",
"csv-stringify": "^6.2.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.2",
"dropbox": "^10.33.0",
"fastify": "^4.20.0",
"fastify-type-provider-zod": "^1.1.9",
"google-auth-library": "^9.0.0",
"gpt-3-encoder": "^1.1.4",
"http-errors": "^2.0.0",
"ical-generator": "^7.0.0",
"ioredis": "^5.3.1",
"knex": "^3.1.0",
"lodash-es": "^4.17.21",
"mysql": "^2.18.1",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.8",
"objection": "^3.0.1",
"openai": "^4.47.1",
"pino": "^9.1.0",
"pino-abstract-transport": "^1.0.0",
"proj4": "^2.9.0",
"query-string": "^9.0.0",
"rotating-file-stream": "^3.0.4",
"stripe": "^15.8.0",
"ua-parser-js": "^1.0.35",
"yauzl-promise": "^4.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.9.2",
"@types/archiver": "^6.0.2",
"@types/http-errors": "^2.0.4",
"@types/lodash": "^4.14.191",
"@types/node": "^20.3.1",
"@types/node-schedule": "^2.1.0",
"@types/nodemailer": "^6.4.7",
"@types/proj4": "^2.5.2",
"chai": "^4.4.1",
"eslint": "^9.15.0",
"mocha": "^10.2.0",
"nodemon": "^3.0.0",
"supertest": "^7.0.0",
"typescript": "^5.0.4"
}
}