-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
{
"name": "motors-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/projeto-fullstack-M6/motors-API.git",
"author": "Winnie Brandão <winnie_brandao@yahoo.com.br>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules --cls --rs src/server.ts",
"typeorm": "typeorm-ts-node-commonjs",
"build": "tsc",
"start": "node dist/src/server.js"
},
"devDependencies": {
"sqlite3": "^5.1.6",
"ts-jest": "^29.1.0"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/mailgen": "^2.0.5",
"@types/node": "^18.15.11",
"@types/nodemailer": "^6.4.7",
"@types/pg": "^8.6.6",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jest": "^29.5.0",
"jsonwebtoken": "^9.0.0",
"mailgen": "^2.0.27",
"nodemailer": "^6.9.1",
"pg": "^8.10.0",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typeorm": "^0.3.12",
"typescript": "^5.0.3",
"uuid": "^9.0.0",
"zod": "^3.21.4"
}
}