-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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": "web-socket-seed",
"version": "1.0.0",
"description": "A seed project for using web sockets with javascript and Node.js",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"dev:server": "node server/index.js"
},
"keywords": [
"websocket",
"vue",
"nodejs",
"webpack"
],
"author": "",
"license": "ISC",
"dependencies": {
"better-sqlite3": "^12.5.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.2",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"vue": "^3.3.4",
"ws": "^8.14.2"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3",
"vue-loader": "^17.3.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}