-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 946 Bytes
/
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
{
"name": "springpress",
"version": "1.3.3",
"description": "Express.js top-level MVC framework feel like Spring Boot",
"author": "Krid Heprakhone <riflowth@gmail.com>",
"license": "MIT",
"repository": "github:riflowth/springpress",
"homepage": "https://github.com/riflowth/springpress",
"keywords": [
"nodejs",
"express",
"expressjs",
"backend",
"http",
"framework"
],
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest --verbose"
},
"files": [
"LICENSE",
"index.js",
"index.d.ts",
"lib/"
],
"engines": {
"node": ">=16.17.0"
},
"dependencies": {
"@types/express": "^4.17.13",
"express": "^4.18.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/supertest": "^2.0.12",
"jest": "^27.5.1",
"supertest": "^6.2.3",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}