-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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": "project-blog",
"version": "1.0.0",
"description": "Thomas MacLean, I build and create things.",
"author": "ThomasAndrewMacLean",
"private": true,
"config": {
"nuxt": {
"host": "0.0.0.0"
}
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"precommit": "npm run lint",
"deploy": "nuxt generate && surge ./dist && rimraf ./dist"
},
"dependencies": {
"@nuxtjs/google-tag-manager": "^2.2.0",
"@nuxtjs/pwa": "^3.0.0-beta.16",
"@nuxtjs/sentry": "^3.0.0",
"babel-es6-polyfill": "^1.1.0",
"dialog-polyfill": "^0.5.0",
"nes.css": "^2.1.1",
"nuxt": "^1.0.0",
"storyblok-nuxt": "^0.0.9",
"vue-typer": "^1.2.0"
},
"devDependencies": {
"@nuxtjs/google-analytics": "^2.0.2",
"@nuxtjs/sitemap": "^0.1.1",
"babel-eslint": "^9.0.0",
"cross-env": "^5.0.1",
"eslint": "^5.6.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-vue": "^4.0.0",
"lighthouse-ci": "https://github.com/ebidel/lighthouse-ci",
"rimraf": "^2.6.2",
"surge": "^0.20.1"
}
}