Skip to content

Commit 7ad7c6f

Browse files
committed
added 01 layer yarn files, use /vue/package.json as base for dependabot
1 parent 9c51693 commit 7ad7c6f

File tree

6 files changed

+10894
-7
lines changed

6 files changed

+10894
-7
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22
updates:
33
- package-ecosystem: "npm"
4-
directory: "/vue/docker/vue/package/00"
4+
directory: "/vue"
55
open-pull-requests-limit: 10
66
schedule:
77
interval: "daily"

vue/docker/vue/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ RUN --mount=type=cache,target=/tmp/yarn_cache \
3737
&& yarn global add --ignore-optional http-server \
3838
&& yarn install
3939

40+
# vue/node layer 01 / dependabot updates
41+
COPY ./package/01/package.json ./package/01/yarn.lock /opt/vue/
42+
RUN --mount=type=cache,target=/tmp/yarn_cache \
43+
yarn install
44+
4045
COPY s6/etc/services.d /etc/services.d
4146
COPY s6/etc/cont-init.d /etc/cont-init.d
4247
ENTRYPOINT ["/init"]
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"name": "vue",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"lint": "vue-cli-service lint",
9+
"test": "ava --verbose --timeout=30s test/**/*.spec.js"
10+
},
11+
"dependencies": {
12+
"@intlify/vue-i18n-loader": "^0.6.1",
13+
"@mapbox/geo-viewport": "^0.4.0",
14+
"@vue/composition-api": "^1.0.0-rc.2",
15+
"@vue/test-utils": "^1.0.2",
16+
"apollo-cache-inmemory": "^1.6.5",
17+
"apollo-client": "^2.6.8",
18+
"apollo-link": "^1.2.13",
19+
"apollo-link-http": "^1.5.16",
20+
"axios": "^0.21.1",
21+
"body-parser": "^1.19.0",
22+
"core-js": "^3.4.4",
23+
"cors": "^2.8.5",
24+
"elliptic": "^6.5.4",
25+
"esm": "^3.2.25",
26+
"express": "^4.17.1",
27+
"generic-pool": "^3.7.1",
28+
"graphql": "^14.5.8",
29+
"graphql-tag": "^2.10.1",
30+
"highlight.js": "^10.4.1",
31+
"http-proxy": "^1.18.1",
32+
"ini": "^1.3.8",
33+
"lodash": "^4.17.20",
34+
"mapbox.js": "^3.2.1",
35+
"vh-check": "^2.0.5",
36+
"vue": "^2.6.10",
37+
"vue-apollo": "^3.0.2",
38+
"vue-cookies": "^1.7.4",
39+
"vue-i18n": "^8.15.3",
40+
"vue-router": "^3.1.3",
41+
"vue-router-sitemap": "^0.0.4",
42+
"vuetify": "^2.1.0",
43+
"vuex": "^3.1.2",
44+
"whatwg-fetch": "^3.0.0"
45+
},
46+
"devDependencies": {
47+
"@vue/cli-plugin-babel": "^4.1.0",
48+
"@vue/cli-plugin-eslint": "^4.1.0",
49+
"@vue/cli-plugin-router": "^4.1.0",
50+
"@vue/cli-plugin-vuex": "^4.1.0",
51+
"@vue/cli-service": "^4.1.0",
52+
"@vue/eslint-config-airbnb": "^4.0.0",
53+
"ava": "^3.8.2",
54+
"babel-eslint": "^10.0.3",
55+
"eslint": "^5.16.0",
56+
"eslint-plugin-vue": "^5.0.0",
57+
"jsdom": "^16.2.2",
58+
"jsdom-global": "^3.0.2",
59+
"prerender-spa-plugin": "^3.2.1",
60+
"require-extension-hooks": "^0.3.3",
61+
"require-extension-hooks-babel": "^1.0.0",
62+
"require-extension-hooks-vue": "^3.0.0",
63+
"sass": "^1.19.0",
64+
"sass-loader": "^8.0.0",
65+
"vue-cli-plugin-prerender-spa": "~1.1.6",
66+
"vue-cli-plugin-vuetify": "^2.0.3",
67+
"vue-template-compiler": "^2.6.10",
68+
"vue-test-utils": "^1.0.0-beta.11",
69+
"vuetify-loader": "^1.3.0"
70+
},
71+
"ava": {
72+
"require": [
73+
"./test/utils/setup.js",
74+
"esm"
75+
]
76+
}
77+
}

0 commit comments

Comments
 (0)