-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "homesupplies",
"version": "1.0.0",
"description": "Sistema de Controle de Estoque Residencial - Gerenciador de Despensas",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node build/index.js",
"predev": "npm run swagger",
"prebuild": "npm run swagger",
"build": "tsc",
"dev": "concurrently \"nodemon\" \"nodemon -x tsoa spec\"",
"swagger": "tsoa spec",
"test": "jest"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labens-ufrn/homesupplies.git"
},
"keywords": [],
"author": "tacianosilva",
"license": "ISC",
"bugs": {
"url": "https://github.com/labens-ufrn/homesupplies/issues"
},
"homepage": "https://github.com/labens-ufrn/homesupplies#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.11",
"@types/swagger-ui-express": "^4.1.3",
"concurrently": "^6.4.0",
"faker": "^5.5.3",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"express": "^4.17.1",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.2.0",
"tsoa": "^3.14.1",
"typeorm": "^0.2.41"
}
}