-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.73 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "microcoaster-webapp-server",
"version": "0.1.0",
"description": "MicroCoaster WebApp - Express Server with Socket.io",
"main": "app.js",
"private": true,
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"sim-esp": "node ./sim/sim-switch-track.cjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:all": "jest --testPathIgnorePatterns=[]",
"test:unit": "jest --testPathPatterns=\"tests/(api|bdd|utils|websocket|sim)\"",
"test:integration": "jest --testPathPatterns=\"tests/routes\" --testPathIgnorePatterns=[]",
"test:watch": "jest --watch --testPathPatterns=\"tests/(api|bdd|utils|websocket|sim)\"",
"test:coverage": "jest --coverage --testPathPatterns=\"tests/(api|bdd|utils|websocket|sim)\" --coverageReporters=text",
"test:coverage:full": "jest --coverage --coverageReporters=text,lcov,html"
},
"keywords": [
"microcoaster",
"websocket",
"express",
"socket.io"
],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^6.0.0",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"mysql2": "^3.6.5",
"socket.io": "^4.7.4",
"socket.io-client": "^4.8.1",
"winston": "^3.11.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.6.2",
"sqlite3": "^5.1.7",
"supertest": "^7.1.4"
}
}