-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
53
54
55
56
57
{
"name": "minichat",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon ./bin/serve -e js,ejs,css,scss",
"build:css": "postcss resource/css/main.css -o public/stylesheets/style.css",
"storage:link": "node ./bin/storage-link.js",
"resource:complie": "node ./bin/resource-complie.js",
"create:admin": "node ./bin/admin.js"
},
"dependencies": {
"@socket.io/redis-adapter": "^7.1.0",
"@socket.io/sticky": "^1.0.1",
"axios": "^0.25.0",
"bcrypt": "^5.0.1",
"browserify": "^17.0.0",
"connect-flash": "^0.1.1",
"connect-multiparty": "^2.2.0",
"connect-redis": "^6.0.0",
"cookie-parser": "~1.4.4",
"dayjs": "^1.10.7",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-session": "^1.17.2",
"express-validator": "^6.14.0",
"filesize": "^8.0.7",
"googleapis": "^92.0.0",
"http-errors": "~1.6.3",
"ioredis": "^4.28.2",
"jquery": "^3.6.0",
"mime-types": "^2.1.34",
"minify-stream": "^2.1.0",
"mongoose": "^6.1.4",
"morgan": "~1.9.1",
"postcss-cli": "^9.1.0",
"redis": "^4.0.1",
"simple-peer": "^9.11.0",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.1",
"tippy.js": "^6.3.7",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"autoprefixer": "^10.4.1",
"babel-loader": "^8.2.5",
"babelify": "^10.0.0",
"nodemon": "^2.0.15",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.11"
}
}