-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 KB
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
46
47
48
{
"name": "nuxt-firebase-auth",
"version": "0.0.31",
"description": "Nuxt.js with Firebase Auth project",
"author": "David Royer <droyer01@gmail.com>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"fdeploy": "yarn build && firebase deploy",
"heroku-postbuild": "npm run build",
"hdeploy": "git push heroku ssr:master"
},
"dependencies": {
"@nuxtjs/pwa": "^1.0.2",
"cookie-parser": "^1.4.3",
"firebase": "4.5.1",
"firebase-admin": "^5.4.2",
"nuxt": "^1.0.0-rc11",
"vuetify": "^0.16.9",
"webfontloader": "^1.6.28",
"xmlhttprequest": "^1.8.0"
},
"now": {
"alias": "nuxt-ssr-firebase-auth"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1"
},
"engines": {
"node": "8.7.0",
"yarn": "1.1.0"
}
}