fix: fix npm script for newer version of node

This commit is contained in:
DCsunset 2023-02-09 23:13:38 -05:00
parent 80df2663eb
commit c6dfe5218e

View file

@ -3,11 +3,11 @@
"version": "1.0.0", "version": "1.0.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "nuxt", "dev": "NODE_OPTIONS=--openssl-legacy-provider nuxt",
"build": "nuxt-ts build", "build": "NODE_OPTIONS=--openssl-legacy-provider nuxt-ts build",
"start": "nuxt-ts start", "start": "NODE_OPTIONS=--openssl-legacy-provider nuxt-ts start",
"export": "nuxt-ts export", "export": "NODE_OPTIONS=--openssl-legacy-provider nuxt-ts export",
"serve": "nuxt-ts serve", "serve": "NODE_OPTIONS=--openssl-legacy-provider nuxt-ts serve",
"lint": "eslint --fix --ext .ts,.js,.vue ." "lint": "eslint --fix --ext .ts,.js,.vue ."
}, },
"dependencies": { "dependencies": {