-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "rps-brawl-2d",
"version": "0.1.0",
"description": "A multiplayer game based on Rock, Paper, Scissors.",
"main": "src/index.js",
"scripts": {
"start": "node ./src/index.js",
"test": "mocha --exit --timeout 10000",
"test:e2e": "cypress run",
"dev": "nodemon ./src/index.js --ignore ./src/resources/**"
},
"author": "Brandon Yi",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"jsonschema": "^1.4.1",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.2.0",
"pako": "^2.1.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"uuid": "^9.0.0",
"validator": "^13.11.0",
"ws": "^8.13.0"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"cypress": "^12.9.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"sinon": "^15.0.2"
}
}