-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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
{
"name": "game-picker",
"version": "1.0.0",
"description": "My magnificent Nuxt.js project",
"author": "Noxilex",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"build:gh-pages": "cross-env DEPLOY_ENV=GH_PAGES && nuxt build",
"generate:gh-pages": "cross-env DEPLOY_ENV=GH_PAGES nuxt generate",
"deploy": "push-dir --dir=dist --branch=gh-pages --cleanup",
"auto-deploy": "npm run generate:gh-pages && npm run deploy",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0",
"cross-env": "^7.0.2",
"nuxt": "^2.0.0",
"nuxt-cname-module": "^1.1.1",
"nuxt-fontawesome": "^0.4.0",
"push-dir": "^0.4.1"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"jest": "^24.1.0",
"nodemon": "^2.0.2",
"push-dir": "^0.4.1",
"vue-jest": "^4.0.0-0"
}
}