-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"name": "@xpresser/server-module",
"version": "0.0.18",
"description": "Xpresser v2 server module",
"type": "module",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts"
},
"./*": {
"import": "./build/*",
"types": "./build/*.d.ts"
}
},
"repository": "https://github.com/xpresserjs/server-module",
"author": "xpresserjs",
"license": "MIT",
"private": false,
"scripts": {
"watch": "npx tsc -w",
"prepublishOnly": "npx tsc && npm run test",
"test": "npx tsx bin/test.ts",
"test:watch": "npx tsx --watch bin/test.ts"
},
"dependencies": {
"lru-cache": "^11.0.1",
"moment": "^2.30.1",
"object-collection": "4.1.5",
"path-to-regexp": "^8.2.0",
"query-string": "^9.1.0"
},
"devDependencies": {
"@japa/api-client": "^2.0.3",
"@japa/assert": "^3.0.0",
"@japa/runner": "^3.1.4",
"@types/autocannon": "^7.12.5",
"@types/lodash-es": "^4.17.10",
"@types/node": "^22.7.3",
"@xpresser/framework": "^0.0.41",
"autocannon": "^7.15.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsx": "^4.19.1",
"typescript": "^5.2.2"
}
}