-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.34 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
{
"name": "blog-website",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p .",
"lint":"eslint .",
"lint:fix": "eslint --fix src",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-session": "^1.17.1",
"mongoose": "^5.12.7",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-flash": "0.0.35",
"@types/cors": "^2.8.7",
"@types/ejs": "^3.0.4",
"@types/express": "^4.17.7",
"@types/express-ejs-layouts": "^2.3.2",
"@types/express-session": "^1.17.0",
"@types/mongoose": "^5.7.36",
"@types/multer": "^1.4.4",
"@types/node": "^14.6.0",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"prettier-eslint": "^11.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}