-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "@guilhermemj/micro-web-server",
"version": "1.2.2",
"description": "A simple and opinionated web server powered by Express",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"start": "npm run build:watch",
"build": "tsc",
"build:watch": "tsc -w --skipLibCheck",
"lint": "eslint src/ --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guilhermemj/micro-web-server.git"
},
"keywords": [
"microservices",
"server",
"express"
],
"author": "Guilherme Jacomini <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guilhermemj/micro-web-server/issues"
},
"homepage": "https://github.com/guilhermemj/micro-web-server#readme",
"dependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/node": "^14.14.35",
"cors": "^2.8.5",
"express": "^4.17.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"typescript": "^4.2.3"
}
}