-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
33 lines (33 loc) · 964 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
{
"name": "barcamp2020",
"version": "1.0.0",
"description": "Barcamp Cyberjaya 2020 Website",
"author": "keishidesu",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"build:gh-pages": "cross-env DEPLOY_PATH=/barcamp2020/ nuxt build",
"generate:gh-pages": "cross-env DEPLOY_PATH=/barcamp2020/ nuxt generate",
"deploy": "push-dir --dir=dist --branch=gh-pages --cleanup",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"animate.css": "^4.1.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0",
"nuxt": "^2.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"babel-eslint": "^10.0.1",
"cross-env": "^7.0.2",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"push-dir": "^0.4.1"
}
}