-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 983 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
{
"name": "intesa-vincente",
"version": "1.0.0",
"description": "WebApp del gioco \"Intesa Vincente\".",
"main": "index.js",
"scripts": {
"build": "npx tailwindcss -i public/css/main_raw.css -o public/css/main.css --minify",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luca-martinelli-09/intesa-vincente.git"
},
"keywords": [
"webapp",
"game",
"intesa vincente",
"gioco",
"reazione a catena"
],
"author": "Luca Martinelli",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/luca-martinelli-09/intesa-vincente/issues"
},
"homepage": "https://github.com/luca-martinelli-09/intesa-vincente#readme",
"devDependencies": {
"tailwindcss": "^3.0.24"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.18.1",
"pug": "^3.0.2",
"socket.io": "^4.5.1",
"uuid": "^8.3.2"
}
}