-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.45 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.45 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
42
43
44
45
{
"name": "infosphere",
"version": "25.0.0",
"description": "InfoSphere 是一款面向企业和个人的开源知识管理系统,旨在提供简单而强大的知识管理解决方案。",
"main": "backend/app.js",
"scripts": {
"start": "node backend/app.js",
"dev": "concurrently \"npm run watch:css\" \"nodemon backend/app.js\"",
"build": "pnpm run build:css",
"build:css": "npx tailwindcss -i ./frontend/css/infosphere.css -o ./frontend/public/css/infosphere.css --minify",
"watch:css": "npx tailwindcss -i ./frontend/css/infosphere.css -o ./frontend/public/css/infosphere.css --watch",
"pm2:start": "pm2 start ecosystem.config.js --env production"
},
"dependencies": {
"axios": "^1.12.2",
"bcrypt": "^6.0.0",
"body-parser": "^1.20.3",
"connect-flash": "^0.1.1",
"crypto": "^1.0.1",
"dotenv": "^17.2.2",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-mysql-session": "^3.0.3",
"express-session": "^1.18.2",
"lodash": "^4.17.21",
"marked": "^15.0.4",
"method-override": "^3.0.0",
"moment": "^2.30.1",
"multer": "^2.0.2",
"mysql2": "^3.15.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-local": "^1.0.0",
"pinyin": "^4.0.0",
"pm2": "^5.4.3",
"prismjs": "^1.30.0",
"qiniu": "^7.14.0",
"socket.io": "^4.8.1"
},
"devDependencies": {
"concurrently": "^8.2.2",
"nodemon": "^3.1.10",
"tailwindcss": "^3.4.17"
}
}