-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "finance-app",
"version": "0.0.1",
"description": "App de finanças produzido com Node.js utilizando express.",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/http-status-codes": "^1.2.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/multer": "^1.4.5",
"@types/node": "^8.0.29",
"@types/yup": "^0.29.11",
"ts-node": "3.3.0",
"typescript": "3.3.3333"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"date-fns": "^2.17.0",
"express": "^4.17.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"nestjs-typeorm-paginate": "^2.3.2",
"nodemon": "^2.0.7",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.31",
"typeorm-pagination": "^2.0.1",
"yup": "^0.32.9",
"yup-locale-pt": "^0.0.6"
},
"scripts": {
"dev": "nodemon --exec ts-node src/server.ts",
"start": "ts-node src/server.ts",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js"
}
}