-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.13 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
{
"name": "src",
"version": "1.0.0",
"description": "groksrc nuxt",
"author": "Drew Cain <groksrc@pm.me>",
"private": true,
"license": "MIT",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"prepackage-functions": "rimraf functions",
"package-functions": "babel 'functionsES6' --out-dir 'functions' --copy-files --ignore 'node_modules'",
"postpackage-functions": "cp -R .nuxt nuxt.config.js functions/ && cd functions && yarn",
"push": "yarn generate && yarn build && firebase deploy"
},
"dependencies": {
"bootstrap-vue": "^2.0.0-rc.8",
"isomorphic-fetch": "^2.2.1",
"nuxt": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-env": "^1.6.1",
"eslint": "^4.15.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-html": "^4.0.3",
"eslint-plugin-vue": "^4.5.0",
"pug": "^2.0.3"
}
}