-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "nuxt-movies",
"private": true,
"author": "The Nuxt Movies authors",
"contributors": [
"Jason Ujma-Alvis <[email protected]>",
"Addy Osmani <[email protected]>",
"Anton K. <[email protected]>",
"Pooya Parsa <[email protected]>",
"Daniel Roe <[email protected]>"
],
"scripts": {
"analyze": "nuxt build --analyze",
"build": "nuxt build",
"generate": "nuxt generate",
"dev": "nuxt",
"dev-on-another-port": "cross-env PORT=8080 nuxt",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint-fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"start": "nuxt start",
"lighthouse-ci": "lhci autorun"
},
"lint-staged": {
"*.+(js|vue)": [
"eslint --fix --ext .js,.vue --ignore-path .gitignore ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@nuxt/image": "^0.4.9",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/google-fonts": "^1.3.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/svg": "^0.1.12",
"@nuxtjs/web-vitals": "^0.1.4",
"cross-env": "^7.0.3",
"eslint": "latest",
"eslint-config-google": "^0.14.0",
"eslint-plugin-babel": "^5.3.1",
"husky": "^4.3.6",
"lint-staged": "^11.0.0",
"node-sass": "latest",
"nuxt": "^2.15.6",
"ohmyfetch": "^0.2.0",
"sass-loader": "^10",
"smoothscroll-polyfill": "^0.4.3",
"tiny-cookie": "^2.3.1"
},
"dependencies": {
"ipx": "^0.6.0"
}
}