-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "dist/server.ts",
"scripts": {
"build": "npx babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"start": "node dist/server.js -p $PORT",
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules src/server.ts",
"lint:fix": "npm run eslint:fix && npm run type-check",
"eslint": "eslint src/**/*.{ts,tsx}",
"eslint:fix": "eslint src/**/*.{ts,tsx} --fix --no-error-on-unmatched-pattern",
"type-check": "tsc --noEmit --skipLibCheck",
"prettier": "npx prettier . --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"ejs": "^3.1.7",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.2",
"mongoose": "^6.3.0",
"moviedb-promise": "^3.1.14",
"multer": "^1.4.4",
"nodemailer": "^6.4.8",
"nodemon": "^2.0.15",
"passport": "^0.6.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"redis": "^4.5.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.7",
"@types/node": "^17.0.45",
"@types/nodemailer": "^6.4.4",
"@types/passport": "^1.0.7",
"@types/passport-http-bearer": "^1.0.37",
"@types/passport-local": "^1.0.34",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"prettier": "^2.6.2",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
}
}