forked from coderosh-zz/blogejst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "nodeejsblog",
"version": "1.0.0",
"main": "server.js",
"license": "MIT",
"scripts": {
"start": "node ./dist/server.js",
"build": "tsc",
"develop": "ts-node-dev -r dotenv/config --transpileOnly --no-notify src/server.ts",
"lint": "eslint . --fix --ext .ts"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"dompurify": "^2.0.11",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.5.0",
"gravatar": "^1.8.0",
"jsdom": "^16.2.2",
"jsonwebtoken": "^8.5.1",
"marked": "^1.1.0",
"mongoose": "^5.9.17",
"nodemailer": "^6.4.8",
"slugify": "^1.4.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-flash": "^0.0.35",
"@types/dompurify": "^2.0.2",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/gravatar": "^1.8.1",
"@types/jsdom": "^16.2.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/marked": "^0.7.4",
"@types/mongoose": "^5.7.21",
"@types/nodemailer": "^6.4.0",
"@types/socket.io": "^2.1.8",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3"
}
}