generated from youthradio/static-nuxt-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.01 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,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"export": "nuxt build && nuxt export && rm -rf _site/* && cp -R dist/ _site/",
"publish-ghpages": "nuxt build && nuxt export",
"fetch-data": "node scripts/getdata.js",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint": "yarn lint:js",
"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": "^3.0.1",
"d3-color": "^3.0.1",
"d3-composite-projections": "^1.3.2",
"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",
"gootenberg": "^1.6.2",
"howler": "^2.2.3",
"lazysizes": "^5.3.2",
"marked": "^2.1.3",
"nanoid": "^3.1.23",
"nuxt": "^2.15.7",
"scrollbooster": "^3.0.2",
"scrollmagic": "^2.0.8",
"topojson-client": "^3.1.0",
"vue-observe-visibility": "^1.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"babel-eslint": "^10.1.0",
"dompurify": "^2.3.0",
"dotenv": "^10.0.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"jsdom": "^16.6.0",
"node-fetch": "^2.6.0",
"node-sass": "6.0.1",
"prettier": "^2.3.2",
"sass-loader": "10",
"tachyons-sass": "^4.9.5"
}
}