-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "youtube-clone-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/lucascust/Backend.git",
"author": "lucascust <lucascustodio@hotmail.com.br>",
"license": "MIT",
"scripts": {
"build": "babel --extensions \".ts, .tsx\" src --out-dir build",
"clean": "tsc --builld --clean",
"dev": "nodemon src/server.js",
"dev:server": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"start": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"run_build": "node --experimental-modules --harmony --experimental-specifier-resolution=node build/server.js",
"debug": "nodemon --inspect src/server.js",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js",
"run_migrations": "ts-node-dev ./node_modules/typeorm/cli.js migration:run",
"lint": "eslint '*/**/*.{ts,tsx}' --quiet --fix"
},
"dependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.13.17",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.9",
"@types/multer": "^1.4.4",
"@types/multer-s3": "^2.7.8",
"@types/nodemailer": "^6.4.1",
"@types/socket.io": "^2.1.13",
"@types/uuid": "^8.3.0",
"atob": "^2.1.2",
"auth": "^0.0.9",
"aws-sdk": "^2.799.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"btoa-atob": "^0.1.2",
"config": "^3.3.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^2.0.0-beta.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-handlebars": "^3.1.0",
"express.io": "^1.1.13",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-blob": "^0.0.2",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.17",
"nodemailer-express-handlebars": "^3.1.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"reflect-metadata": "^0.1.13",
"s3-proxy": "^1.2.1",
"socket.io": "^4.0.1",
"tsc": "^1.20150623.0",
"typeorm": "^0.2.29",
"typescript": "^4.0.5",
"url-polyfill": "^1.1.12",
"uuid": "^8.3.2",
"yup": "^0.28.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.2",
"prettier": "^2.2.0",
"regenerator-runtime": "^0.13.7",
"sucrase": "^3.12.1",
"ts-node-dev": "^1.1.1"
}
}