-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "pong-3.0",
"version": "0.0.1",
"description": "A pong clone with a twist",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --max-warnings=0 --ext=js,ts,tsx",
"dev": "npm start -- --watch",
"build": "esbuild src/client/index.tsx --bundle --minify --sourcemap --outfile=./public/index.js",
"start": "node src/server/server.js",
"watch": "esbuild src/client/index.tsx --bundle --watch --outfile=./public/index.js",
"checkts": "tsc -p . --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NadTr/Pong-3.0.git"
},
"keywords": [
"pong"
],
"author": "Nadine Traufler & Samuel Degueldre",
"license": "MIT",
"bugs": {
"url": "https://github.com/NadTr/Pong-3.0/issues"
},
"homepage": "https://github.com/NadTr/Pong-3.0#readme",
"dependencies": {
"express": "4.18.2",
"socket.io": "4.5.4",
"socket.io-client": "4.5.4",
"uuid": "9.0.0"
},
"devDependencies": {
"@types/node": "17.0.45",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"esbuild": "0.16.15",
"eslint": "7.32.0",
"eslint-plugin-react": "7.31.11",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.4"
},
"browserslist": [
"last 1 Chrome versions"
]
}