-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 765 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 765 Bytes
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
{
"name": "markdown_parser",
"version": "1.0.0",
"description": "A simple markdown -> HTML real time parser app",
"keywords": [
"markdown",
"html",
"parser",
"socket.io",
"markdown-it"
],
"main": "server.js",
"scripts": {
"compile": "node-sass -w ./public/scss/main.scss ./public/css/style.css",
"serve": "nodemon server.js"
},
"author": "diego-c",
"license": "MIT",
"dependencies": {
"connect-redis": "^3.3.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"helmet": "^3.9.0",
"markdown-it": "^8.4.0",
"redis": "^2.8.0",
"socket.io": "^2.0.4",
"uuid": "^3.1.0"
},
"devDependencies": {
"node-sass": "^4.7.2"
}
}