-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "next-micro",
"description": "An HTTP router, reverse-proxy and process manager for composing Next.js microservices.",
"version": "1.2.2",
"scripts": {
"lint": "eslint .",
"format": "prettier --config .prettierrc '{src,tests}/**/*.ts' --write",
"test": "jest",
"example": "node -r source-map-support/register ./bin/nextmicro.js",
"dev": "yarn example dev",
"preexample": "yarn run build",
"build": "tsc -d",
"prebuild": "rimraf dist",
"docs": "docsify serve ./docs",
"prepublishOnly": "yarn run build"
},
"bin": {
"nextmicro": "./bin/nextmicro.js"
},
"main": "dist/index.js",
"author": "Alex Mendes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexandermendes/next-micro.git"
},
"engines": {
"node": ">=14"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
"src",
"dist",
"bin"
],
"keywords": [
"next",
"react",
"microservices"
],
"peerDependencies": {
"next": ">=9"
},
"dependencies": {
"app-root-path": "^3.0.0",
"chokidar": "^3.5.2",
"console-table-printer": "^2.10.0",
"cosmiconfig": "^7.0.0",
"get-port": "^5.1.1",
"glob": "^7.1.7",
"http-graceful-shutdown": "^3.1.3",
"http-proxy": "^1.18.1",
"joi": "^17.4.2",
"path-to-regexp": "^6.2.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@testing-library/dom": "^8.1.0",
"@types/app-root-path": "^1.2.4",
"@types/glob": "^7.1.4",
"@types/http-proxy": "^1.17.7",
"@types/jest": "^26.0.24",
"@types/node": "^16.6.1",
"@types/node-fetch": "^2.5.12",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"commitlint": "^8.3.5",
"docsify-cli": "^4.4.3",
"eslint": "^7.5.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"husky": "^4.2.5",
"jest": "^27.0.6",
"next": "^11.1.0",
"nock": "^13.1.1",
"node-fetch": "^2.6.1",
"node-mocks-http": "^1.10.1",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"source-map-support": "^0.5.19",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}