forked from echaoeoen/next-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
{
"name": "next-app-router-decorator",
"version": "1.0.2",
"description": "Nextjs API decorator helper",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/echaoeoen/next-api.git"
},
"keywords": [
"nextjs",
"api",
"handler",
"router",
"page-router"
],
"author": "echaoeoen <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/echaoeoen/next-api/issues"
},
"homepage": "https://github.com/echaoeoen/next-api#readme",
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookies-next": "^4.2.1",
"cryptr": "^6.3.0",
"http-status-codes": "^2.3.0",
"next": "^14.2.11",
"node-application-context": "^1.1.3",
"react": "^18.3.1",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.5.4",
"eslint": "^9.10.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"typescript": "^5.6.2"
}
}