-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "teste-backend",
"version": "1.0.0",
"main": "src/routes/index.ts",
"engines": {
"node": "14.15.3"
},
"dependencies": {
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"express-openapi": "^9.3.0",
"express-openapi-validator": "^3.16.1",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"swagger-ui-express": "^4.1.6",
"ts-node": "^10.4.0",
"typeorm": "^0.2.38",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/swagger-ui-express": "^4.1.3",
"@types/validator": "^13.6.5",
"nodemon": "^2.0.14",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
},
"scripts": {
"dev-server": "ts-node-dev src/routes/index.ts",
"typeorm": "ts-node -r tsconfig-paths/regis ./node_modules/typeorm/cli.js",
"migration": "ts-node --transpile-only ./node_modules/typeorm/cli.js migration:run"
},
"repository": {
"type": "git",
"url": "git+https://giovane-aguiar@bitbucket.org/giovane-aguiar/teste-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/giovane-aguiar/teste-backend#readme"
}