forked from joeseesun/quickshare
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 KB
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
{
"name": "html-go-express",
"version": "1.0.0",
"description": "HTML代码分享工具 - Express版本",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production node --max-old-space-size=1024 app.js",
"dev": "NODE_ENV=development nodemon app.js",
"test": "NODE_ENV=test node app.js",
"prod": "NODE_ENV=production node --max-old-space-size=1024 app.js"
},
"keywords": [
"html",
"share",
"express",
"ejs"
],
"author": "",
"license": "ISC",
"dependencies": {
"@mermaid-js/mermaid-cli": "^11.4.2",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-session": "^1.18.1",
"jsdom": "^26.0.0",
"marked": "^15.0.7",
"mermaid": "^11.6.0",
"mermaid-render": "^1.0.9",
"morgan": "^1.10.0",
"session-file-store": "^1.5.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}