-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 KB
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
{
"name": "node-express-server",
"version": "0.2.2",
"description": "Simple node server with express",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andryuha49/node-express-server.git"
},
"keywords": [
"node",
"express",
"server",
"swagger",
"routing-controllers",
"typeorm"
],
"author": "andryuha49",
"license": "MIT",
"bugs": {
"url": "https://github.com/andryuha49/node-express-server/issues"
},
"homepage": "https://github.com/andryuha49/node-express-server#readme",
"devDependencies": {
"@types/cors": "^2.8.4",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.16.1",
"@types/express-fileupload": "^0.4.0",
"@types/i18n": "^0.8.5",
"@types/morgan": "^1.7.35",
"@types/swagger-ui-dist": "^3.0.0",
"typescript": "^3.3.3",
"typeorm": "^0.2.16"
},
"dependencies": {
"body-parser": "^1.18.3",
"class-validator": "^0.9.1",
"class-validator-jsonschema": "^1.2.0",
"cors": "^2.8.5",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"express-fileupload": "^1.1.3-alpha.2",
"i18n": "^0.8.3",
"morgan": "^1.9.1",
"openapi3-ts": "^1.3.0",
"routing-controllers": "^0.7.7",
"routing-controllers-openapi": "^1.6.0",
"swagger-ui-dist": "^3.20.8"
}
}