-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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": "easy-doc-api",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:easydoc-api/easy-doc-api.git",
"author": "Kamila Mattos <99353050+KamilaMattos@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --ignore-watch node_modules src/server.ts",
"typeorm": "typeorm-ts-node-commonjs",
"test": "NODE_ENV=test jest",
"build": "tsc",
"start": "node dist/src/server.js"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemailer": "^6.4.5",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"sqlite3": "^5.0.11",
"supertest": "^6.2.4",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
},
"dependencies": {
"@types/jest": "^29.0.2",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jest": "^29.0.3",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.7.8",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.9",
"uuid": "^8.3.2",
"yup": "^0.32.11"
}
}