EvalueTonSavoir/quizRoom/package.json

35 lines
691 B
JSON
Raw Normal View History

{
2024-11-05 16:37:07 -05:00
"name": "quizroom",
"version": "1.0.0",
2024-11-05 16:37:07 -05:00
"main": "index.js",
"scripts": {
2024-11-05 16:37:07 -05:00
"start": "node dist/app.js",
"build": "tsc",
"dev": "ts-node app.ts"
},
2024-11-05 16:37:07 -05:00
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
2024-11-05 16:37:07 -05:00
"@types/express": "^5.0.0",
"jest": "^29.7.0",
2024-11-05 16:37:07 -05:00
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
2024-11-11 15:16:59 -05:00
"dotenv": "^16.4.5",
"express": "^4.21.1",
2024-11-05 16:37:07 -05:00
"http": "^0.0.1-security",
"socket.io": "^4.8.1",
"socket.io-client": "^4.7.2"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.js?(x)",
"**/?(*.)+(spec|test).js?(x)"
]
}
}