generated from youthradio/static-nuxt-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.15 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
54
55
56
57
58
59
60
61
62
{
"name": "yr-media-nuxt-template",
"version": "1.0.0",
"description": "My stunning Nuxt.js project",
"author": "Radames Ajna",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt",
"build": "nuxt build --modern=server",
"start": "nuxt start --modern=server",
"export": "nuxt generate && rm -rf _site/* && cp -R dist/ _site/",
"publish-ghpages": "nuxt generate",
"fetch-data": "cd scripts && node --experimental-modules --experimental-json-modules getdata.js",
"compress-images": "node scripts/imageEncoding.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",
"d3-array": "^2.12.1",
"d3-color": "^2.0.0",
"d3-composite-projections": "^1.4.0",
"d3-dsv": "^2.0.0",
"d3-ease": "^2.0.0",
"d3-geo": "^2.0.1",
"d3-scale-chromatic": "^2.0.0",
"d3-selection": "^2.0.0",
"d3-svg-annotation": "^2.5.1",
"d3-transition": "^2.0.0",
"gootenberg": "^1.6.2",
"howler": "^2.2.1",
"lazysizes": "^5.3.2",
"marked": "^2.0.7",
"nuxt": "^2.15.6",
"scrollmagic": "^2.0.8",
"topojson-client": "3",
"vue-dragscroll": "^3.0.0",
"vue-observe-visibility": "^1.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@squoosh/lib": "^0.3.1",
"babel-eslint": "^10.1.0",
"dompurify": "^2.2.9",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"fast-glob": "^3.2.5",
"jsdom": "^16.6.0",
"node-fetch": "^2.6.1",
"node-sass": "^6.0.0",
"prettier": "^2.3.1",
"sass-loader": "^10",
"tachyons-sass": "^4.9.5"
}
}