-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.3 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "nuxt",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nuxt src",
"generate": "nuxt generate src",
"build": "nuxt build src",
"lint": "eslint --ext .ts,.js,.vue .",
"lintfix": "eslint --fix --ext .ts,.js,.vue .",
"test": "mocha cypress/test.js --timeout 60000",
"rebase": "node cypress/rebase.js"
},
"dependencies": {
"@nuxtjs/axios": "5.13.6",
"await-sleep": "^0.0.1",
"nuxt": "2.15.7",
"vue-scroll-reveal": "1.0.11",
"vue-scrollto": "^2.20.0",
"vue-textarea-autosize": "^1.1.1",
"vue-youtube-embed": "^2.2.2"
},
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@babel/runtime-corejs3": "7.14.6",
"@nuxt/babel-preset-app": "2.15.7",
"@nuxt/image": "^0.4.14",
"@nuxt/types": "2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "6.0.1",
"@nuxtjs/router": "^1.6.1",
"bit-bin": "^14.8.8",
"core-js": "3.14.0",
"css-mqpacker": "^7.0.0",
"eslint": "7.28.0",
"eslint-plugin-nuxt": "^2.0.0",
"image-webpack-loader": "^7.0.1",
"postcss-color-function": "^4.1.0",
"postcss-color-short": "^0.2.4",
"postcss-combine-duplicated-selectors": "^5.0.2",
"postcss-easy-import": "^3.0.0",
"postcss-functions": "3.0.0",
"postcss-join-transitions": "^1.1.0",
"postcss-mixins": "6.2.3",
"postcss-mq-last": "^1.0.2",
"postcss-responsive-type": "^1.0.0",
"postcss-utilities": "^0.8.0",
"precss": "3.1.2",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"sass": "1.35.0",
"sugarss": "^3.0.3"
},
"author": "",
"license": "ISC",
"bit": {
"env": {},
"componentsDefaultDirectory": "src/{name}",
"packageManager": "yarn",
"resolveModules": {
"modulesDirectories": [
"src"
],
"aliases": {
"~": "src",
"~~": "./"
}
},
"overrides": {
"layouts/*": {
"dependencies": {
"file://src/components/Header.vue": "-",
"file://src/components/Footer.vue": "-",
"file://src/components/Sidebar.vue": "-",
"file://src/components/Video.vue": "-"
}
}
}
}
}