-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.81 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
46
47
48
49
50
51
52
53
{
"name": "BehindOurMask",
"version": "1.0.0",
"description": "My first-class Nuxt.js project",
"author": "Radames Ajna",
"private": true,
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"start": "nuxt start",
"export": "nuxt generate && rm -rf _site/* && cp -R dist/ _site/",
"publish-ghpages": "nuxt generate",
"fetch-data": "node scripts/getdata.js",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"worktree": "git checkout --orphan gh-pages && git reset --hard && git commit --allow-empty -m 'Init' && git checkout master && git worktree add _site gh-pages",
"gh-pages": "yarn export && cd _site && git add . && git commit --amend --no-edit && git push origin gh-pages --force",
"production": "BASE_URL_PRODUCTION=/ yarn publish-ghpages && rm -rf _production/* && cp -R dist/ _production/"
},
"dependencies": {
"@nuxtjs/google-gtag": "^1.0.4",
"@nuxtjs/sitemap": "^2.4.0",
"d3-array": "^2.9.1",
"d3-drag": "^2.0.0",
"d3-scale": "^3.2.3",
"d3-selection": "^2.0.0",
"lazysizes": "^5.3.0",
"nuxt": "^2.14.12",
"nuxt-facebook-pixel-module": "^1.5.0",
"plyr": "^3.6.3",
"smoothscroll-polyfill": "^0.4.4",
"vue-mailchimp-subscribe": "^1.1.0",
"vue-plyr": "6.0.4"
},
"devDependencies": {
"@babel/runtime-corejs2": "^7.12.5",
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"babel-eslint": "^10.1.0",
"core-js": "3.8.2",
"dompurify": "^2.2.6",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"gootenberg": "^1.4.3",
"jsdom": "^16.2.2",
"marked": "^1.2.7",
"node-sass": "^5.0.0",
"prettier": "^2.2.1",
"sass-loader": "^10.1.1",
"tachyons-sass": "^4.9.5"
}
}