-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 949 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
{
"name": "card-match-game",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"heroku-postbuild": "npm run build",
"docker:build": "docker build . -f Dockerfile.standalone -t harbor.kevsong.com/monstermatches/frontend:latest --no-cache",
"docker:push": "docker push harbor.kevsong.com/monstermatches/frontend:latest",
"docker:run": "docker run -d -p 80:80 harbor.kevsong.com/monstermatches/frontend:latest",
"docker:preview": "npm run docker:build && npm run docker:run",
"docker:deploy": "npm run docker:build && npm run docker:push"
},
"dependencies": {
"animate.css": "^4.1.1",
"core-js": "^3.6.5",
"nuxt": "^2.14.6",
"socket.io-client": "^3.0.4",
"vue-chat-scroll": "^1.4.0"
},
"devDependencies": {
"@nuxtjs/vuetify": "^1.11.2"
}
}