forked from houseofbits/nodejs-uno-game
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 878 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": "game",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": "https://github.com/houseofbits/nodejs-uno-game",
"scripts": {
"build": "vue-cli-service build --mode=development",
"serve": "vue-cli-service serve"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"express": "^4.17.1",
"gsap": "^3.2.6",
"socket.io": "^2.3.0",
"vue": "^2.6.11",
"vue-cookies": "^1.7.0",
"vue-socket.io": "^3.0.7"
},
"devDependencies": {
"@vue/cli": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"vue-template-compiler": "^2.6.11"
},
"vue": {
"publicPath": "client",
"outputDir": "client",
"pages": {
"index": {
"entry": "src/main.js",
"template": "src/index.html",
"filename": "index.html"
}
}
}
}