-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.56 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
{
"name": "ping_pong_game",
"version": "1.0.0",
"description": " A classic Pong game built using HTML5 canvas, CSS3, and TypeScript. Test your reflexes in this simple yet engaging game, where you control a paddle to bounce a ball and score points. The game features smooth animations, and dynamic scoring. Challenge yourself and beat the computer in this timeless arcade favorite.",
"main": "main.js",
"scripts": {
"start": "nodemon",
"run-server": "nest start",
"compile": "tsc -p ./config/tsconfig.json",
"build": "webpack --config ./config/webpack.config.js",
"build-css": "tailwindcss build -i srcs/style.css -o public/style.css --config ./config/tailwind.config.js"
},
"keywords": [
"Ping Pong",
"Pong Game",
"Ping Pong Game"
],
"author": "Mouad El Asri",
"license": "MIT",
"devDependencies": {
"@nestjs/cli": "^10.1.18",
"@types/express": "^4.17.20",
"@types/react-dom": "^18.2.8",
"nodemon": "^3.0.1",
"tailwindcss": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@nestjs/common": "^10.2.7",
"@nestjs/core": "^10.2.7",
"@nestjs/platform-express": "^10.2.7",
"@nestjs/platform-socket.io": "^10.2.7",
"@nestjs/websockets": "^10.2.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"typescript": "^5.2.2"
}
}