-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.32 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.32 KB
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
{
"name": "@adaptivestone/framework",
"version": "5.0.0-beta.45",
"description": "Adaptive stone node js framework",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"exports": {
"./package.json": "./package.json",
"./*": "./dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adaptivestone/framework.git"
},
"homepage": "https://framework.adaptivestone.com/",
"scripts": {
"build": "rm -rf dist && tsc",
"postbuild": "cp -R ./src/migrations ./dist/migrations",
"check:types": "tsc --noEmit",
"dev": "node --watch ./src/index.ts",
"prod": "node --watch ./src/cluster.ts",
"test": "vitest run",
"t": "vitest --coverage=false --reporter=default",
"format": "biome format",
"format:fix": "biome format --write",
"knip": "knip",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"check": "biome check",
"check:fix": "biome check --write",
"prepublishOnly": "npm run build",
"cli": "node cliCommand.ts",
"benchmark": "h2load -n 10000 -c 50 -p 'http/1.1' http://localhost:3300/",
"benchmark2": "h2load -n 10000 -c 50 https://localhost:3300/",
"redis:docker": "docker run --rm -p 6379:6379 redis"
},
"author": "Andrei Lahunou",
"license": "MIT",
"dependencies": {
"@redis/client": "^5.0.0",
"deepmerge": "^4.2.2",
"express": "^5.0.1",
"formidable": "^3.5.1",
"i18next": "^26.0.1",
"i18next-fs-backend": "^2.0.0",
"mongoose": "^9.0.0",
"rate-limiter-flexible": "^10.0.1",
"winston": "^3.3.3",
"winston-transport": "^4.9.0",
"yup": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@sentry/core": "^10.34.0",
"@sentry/node": "^10.34.0",
"@types/express": "^5.0.1",
"@types/formidable": "^3.4.5",
"@types/node": "^25.0.0",
"@vitest/coverage-v8": "^4.0.0",
"lefthook": "^2.0.0",
"mongodb-memory-server": "^11.0.0",
"typescript": "^6.0.0",
"vitest": "^4.0.0"
},
"peerDependencies": {
"@adaptivestone/framework-module-email": "^1.0.0",
"@sentry/core": "^10.34.0",
"@sentry/node": "^10.34.0"
},
"peerDependenciesMeta": {
"@adaptivestone/framework-module-email": {
"optional": true
},
"@sentry/core": {
"optional": true
},
"@sentry/node": {
"optional": true
}
}
}