-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
63
64
65
66
67
{
"name": "nuxt",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt build && nuxt generate",
"export": "nuxt generate",
"serve": "nuxt start",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"lint": "npm run lint:js"
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.11.0",
"gsap": "^3.9.1",
"headroom.js": "^0.12.0",
"jquery": "^3.6.0",
"lite-youtube-embed": "^0.2.0",
"markdown-it": "^12.0.6",
"mobile-device-detect": "^0.4.3",
"nuxt": "^2.15.3",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"querystring": "^0.2.1",
"rfs": "^9.0.3",
"v-tooltip": "^2.1.3",
"vue-kinesis": "^1.3.3",
"vue-scrollto": "^2.20.0",
"vue-youtube": "^1.4.0"
},
"devDependencies": {
"@aceforth/nuxt-optimized-images": "^1.4.0",
"@nuxt/content": "^1.14.0",
"@nuxtjs/color-mode": "^2.0.5",
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/style-resources": "^1.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"husky": "^6.0.0",
"imagemin-svgo": "^9.0.0",
"lint-staged": "^10.5.4",
"normalize.css": "^8.0.1",
"prettier": "^2.2.1",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"tiny-cookie": "^2.3.2",
"vue-clickaway": "^2.2.2",
"vue-observe-visibility": "^1.0.0"
}
}