-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.31 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
{
"name": "428lab_website",
"version": "1.0.0",
"description": "My glorious Nuxt.js project",
"author": "T.Shinohara",
"private": true,
"scripts": {
"dev": "cross-env BASE_URL=http://localhost:3000 nuxt",
"build": "nuxt build && yarn build:copy",
"build:copy": "rimraf public && mkdirp public/_nuxt && cp -R functions/nuxt/dist/client/* public/_nuxt && cp -R src/static/* public",
"start": "nuxt start",
"generate": "nuxt generate",
"build:gh-pages": "DEPLOY_ENV=GH_PAGES nuxt build",
"generate:gh-pages": "DEPLOY_ENV=GH_PAGES nuxt generate",
"heroku-postbuild": "npm run build",
"deploy": "push-dir --dir=dist --branch=gh-pages --cleanup",
"serve": "cross-env BASE_URL=http://localhost:5000 yarn build && firebase serve --only hosting,functions"
},
"dependencies": {
"@nuxtjs/axios": "^5.9.5",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/google-analytics": "^2.2.3",
"@nuxtjs/proxy": "^1.3.3",
"axios-jsonp": "^1.0.4",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0",
"connpass": "^1.1.0",
"cross-env": "^7.0.0",
"nuxt": "^2.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"mkdirp": "^1.0.3",
"rimraf": "^3.0.2"
}
}