-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.21 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
{
"name": "yr-media-nuxt-template",
"version": "1.0.0",
"description": "My stunning Nuxt.js project",
"author": "Radames Ajna",
"private": true,
"type": "module",
"scripts": {
"dev": "GIT_REPO_NAME=$(basename `git rev-parse --show-toplevel`) nuxt",
"build": "nuxt build --modern=server",
"start": "nuxt start --modern=server",
"export": "nuxt generate && rm -rf _site/* && cp -R dist/ _site/",
"compress-images": "node scripts/imageCompress.js",
"publish-ghpages": "GIT_REPO_NAME=$(basename `git rev-parse --show-toplevel`) nuxt generate",
"fetch-data": "cd scripts && node --experimental-modules --experimental-json-modules 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",
"@squoosh/lib": "^0.4.0",
"d3-array": "^3.1.1",
"d3-color": "^3.0.1",
"d3-composite-projections": "^1.4.0",
"d3-dsv": "^3.0.1",
"d3-ease": "^3.0.1",
"d3-geo": "^3.0.1",
"d3-scale-chromatic": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-svg-annotation": "^2.5.1",
"d3-transition": "^3.0.1",
"fast-glob": "^3.2.7",
"gootenberg": "^1.6.2",
"howler": "^2.2.3",
"lazysizes": "^5.3.2",
"marked": "^4.0.8",
"nuxt": "^2.15.8",
"scrollmagic": "^2.0.8",
"topojson-client": "^3.1.0",
"vue-observe-visibility": "^1.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"babel-eslint": "^10.1.0",
"dompurify": "^2.3.4",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jsdom": "^19.0.0",
"node-sass": "^6",
"prettier": "^2.5.1",
"sass-loader": "^10",
"tachyons-sass": "^4.9.5"
}
}