forked from pb-node-equipe-15/gaming-partner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "gaming-partner",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/pb-node-equipe-15/gaming-partner.git",
"author": "Ivanilton Neto <netijua@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules src/server.ts",
"typeorm": "typeorm-ts-node-commonjs",
"test": "cross-env NODE_ENV=test jest",
"build": "tsc",
"start": "node dist/src/server.js"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.2.1",
"@types/supertest": "^2.0.12",
"jest": "^29.2.2",
"sqlite3": "^5.1.2",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/uuid": "^8.3.4",
"bcrypt": "^5.1.0",
"class-transformer": "^0.5.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.6",
"uuid": "^9.0.0",
"yup": "^0.32.11"
}
}