-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "backend-seed",
"version": "1.0.0",
"description": "Seed project to build back-end services that scale",
"main": "src/app.js",
"scripts": {
"install:clean": "rm -rf node_modules && rm package-lock.json && npm install",
"start": "tsc && node ./src/app.js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Blockost/backend-seed.git"
},
"keywords": [
"seed",
"backend",
"rest",
"api",
"typescript",
"express",
"typeorm",
"config",
"decorator"
],
"author": "Blockost (Simon Espigolé)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Blockost/backend-seed/issues"
},
"homepage": "https://github.com/Blockost/backend-seed#readme",
"dependencies": {
"body-parser": "^1.19.0",
"convict": "^4.4.1",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"inversify": "^5.0.1",
"inversify-express-utils": "^6.3.2",
"morgan": "^1.9.1",
"pg": "^7.14.0",
"reflect-metadata": "^0.1.13",
"rotating-file-stream": "^1.4.6",
"typeorm": "^0.2.20",
"typescript": "^3.7.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/convict": "^4.2.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.2",
"@types/morgan": "^1.7.37",
"@types/node": "^11.15.2"
}
}