-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.47 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
{
"name": "xpresser",
"version": "0.32.7",
"description": "Nodejs Framework for building scalable apps.",
"main": "dist/index.js",
"types": "global.d.ts",
"scripts": {
"prepublishOnly": "npx tsc",
"watch": "npx tsc --watch",
"build": "npx tsc",
"test": "npx tsx watch tests/server.ts",
"test:dev": "npx nodemon dist/tests/server.js",
"test:specs": "node --import tsx --test tests/specs/*.spec.ts"
},
"repository": "https://github.com/xpresserjs/framework.git",
"homepage": "https://xpresserjs.com",
"author": "xpresserjs",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@xpresser/router": "^2.0.1",
"body-parser": "^1.20.3",
"build-url-ts": "^6.1.8",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"ejs": "^3.1.10",
"express": "^4.21.0",
"express-flash": "^0.0.2",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"has-pkg": "^0.0.1",
"helmet": "^7.1.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"object-collection": "^3.0.1",
"path-to-regexp": "^6.2.2",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.5",
"@types/pluralize": "^0.0.33",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=12"
},
"keywords": [
"xpresser",
"xpresserjs",
"xjs",
"xjs-cli",
"framework",
"expressjs"
]
}