-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
{
"name": "gostack_node_1",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev:server": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only src/shared/infra/http/server.ts",
"build": "tsc",
"start": "ts-node src/shared/infra/http/server.ts",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"test": "jest"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"celebrate": "^15.0.0",
"class-transformer": "^0.4.0",
"cors": "^2.8.5",
"date-fns": "^2.23.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"nodemailer": "^6.6.3",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.6.0",
"typeorm": "^0.2.35",
"uuidv4": "^6.2.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.4",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"git-commit-msg-linter": "^3.2.6",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.10.1",
"typescript": "^4.3.5"
}
}