-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 778 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 778 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
{
"name": "codetime",
"version": "1.0.0",
"description": "Codetime: single-port Node server (HTTP + WS + static Vue) with codetime docs",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest --runInBand"
},
"keywords": ["codetime", "websocket", "http", "vue", "single-port"],
"author": "",
"license": "ISC",
"dependencies": {
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mysql2": "^3.11.3",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"express-session": "^1.18.1",
"prom-client": "^15.1.3",
"ws": "^8.18.0"
},
"devDependencies": {
"nodemon": "^3.1.4",
"jest": "^29.7.0",
"supertest": "^7.0.0"
}
}