-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 743 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 743 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
35
{
"name": "code-renderer",
"version": "1.0.0",
"description": "Code rendering application with HTML, CSS, JS and Mermaid support",
"main": "app.js",
"scripts": {
"start": "npm run init-db && node app.js",
"dev": "nodemon app.js",
"init-db": "node scripts/init-db.js"
},
"keywords": [
"code",
"renderer",
"html",
"css",
"javascript",
"mermaid"
],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"chalk": "^4.1.2",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"socket.io": "^4.8.1",
"sqlite3": "^5.1.7",
"uuid": "^9.0.1",
"vm2": "^3.9.19"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}