Updated to use pnpm
Now enforcing use of node 17 (not using 18 due to dep. issue) Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
parent
e30c41e841
commit
d9d8363322
3
.npmrc
Normal file
3
.npmrc
Normal file
|
@ -0,0 +1,3 @@
|
|||
auto-install-peers=true
|
||||
node-version=v17.9.1
|
||||
engine-strict=true
|
Binary file not shown.
|
@ -1,5 +1,5 @@
|
|||
# Dockerfile
|
||||
FROM node:18-alpine
|
||||
FROM node:17-alpine
|
||||
|
||||
# create destination directory
|
||||
RUN mkdir -p /usr/src/nuxt-app
|
||||
|
|
50
package.json
50
package.json
|
@ -1,26 +1,28 @@
|
|||
{
|
||||
"private": true,
|
||||
"engines": {
|
||||
"node": ">=16",
|
||||
"pnpm": ">=7"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "nuxt build",
|
||||
"dev": "nuxt dev",
|
||||
"start": "nuxt start",
|
||||
"generate": "nuxt generate",
|
||||
"preview": "nuxt preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@intlify/nuxt3": "0.2.2",
|
||||
"@nuxt/postcss8": "1.1.3",
|
||||
"@nuxt/types": "2.15.8",
|
||||
"nuxt": "3.0.0-rc.4",
|
||||
"sass": "1.52.3",
|
||||
"sass-loader": "13.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxtjs/i18n": "7.2.2",
|
||||
"autoprefixer": "10.4.7"
|
||||
}
|
||||
"private": true,
|
||||
"engines": {
|
||||
"node": "v17.9.1",
|
||||
"pnpm": ">=7"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "nuxt build",
|
||||
"dev": "nuxt dev",
|
||||
"start": "nuxt start",
|
||||
"generate": "nuxt generate",
|
||||
"preview": "nuxt preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@intlify/nuxt3": "0.2.2",
|
||||
"@nuxt/postcss8": "1.1.3",
|
||||
"@nuxt/types": "2.15.8",
|
||||
"nuxt": "3.0.0-rc.4",
|
||||
"sass": "1.52.3",
|
||||
"sass-loader": "13.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxtjs/i18n": "7.2.2",
|
||||
"vite": "^2.9.12",
|
||||
"vue": "^3.2.37",
|
||||
"webpack": "^5.73.0"
|
||||
}
|
||||
}
|
||||
|
|
5886
pnpm-lock.yaml
Normal file
5886
pnpm-lock.yaml
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue