-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (52 loc) · 1.22 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": "nextrouterkit",
"version": "0.0.0-beta8",
"description": "A Next Level Router For Your Web Apps",
"main": "index.js",
"scripts": {
"init": "ts-node index.js init",
"lint": "eslint .",
"build": "tsc",
"start": "node index.js",
"dev": "node index.js"
},
"bin": {
"nextrouterkit": "bin/Cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muhammad-fiaz/NextRouterKit.git"
},
"keywords": [
"nextrouter",
"router",
"next",
"nextroutekit",
"nextrouterkit",
"nextroute"
],
"author": "muhammad-fiaz",
"license": "MIT",
"bugs": {
"url": "https://github.com/muhammad-fiaz/NextRouterKit/issues"
},
"homepage": "https://github.com/muhammad-fiaz/NextRouterKit#readme",
"devDependencies": {
"@types/express": "^4.17.20",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"fs": "^0.0.1-security",
"jest": "^29.7.0",
"path": "^0.12.7",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"chokidar": "^3.5.3",
"express": "^4.18.2",
"glob": "^10.3.10",
"readline-sync": "^1.4.10"
}
}