|
|
@@ -3,12 +3,20 @@
|
|
|
"version": "0.2.0",
|
|
|
"private": true,
|
|
|
"scripts": {
|
|
|
- "dev": "nuxt --hostname '0.0.0.0' --port 3004 --dotenv .env.local",
|
|
|
- "ci": "nuxt --hostname '0.0.0.0' --port 3004 --dotenv .env.ci",
|
|
|
+ "dev": "nuxt --hostname '0.0.0.0' --port 3004",
|
|
|
+ "dev:local": "yarn dev --dotenv .env.local",
|
|
|
+ "dev:preprod": "yarn dev --dotenv .env.preprod",
|
|
|
+ "dev:prod": "yarn dev --dotenv .env.prod",
|
|
|
+ "dev:ci": "yarn dev --dotenv .env.ci",
|
|
|
"build": "nuxt build",
|
|
|
- "build:preprod": "nuxt build --dotenv .env.preprod",
|
|
|
- "start": "nuxt start",
|
|
|
- "generate": "nuxt generate",
|
|
|
+ "build:local": "yarn build --dotenv .env.local",
|
|
|
+ "build:preprod": "yarn build --dotenv .env.preprod",
|
|
|
+ "build:prod": "yarn build --dotenv .env.prod",
|
|
|
+ "start": "nuxt start --hostname '127.0.0.1' --port 3004",
|
|
|
+ "start:local": "yarn start --dotenv .env.local",
|
|
|
+ "start:preprod": "yarn start --dotenv .env.preprod",
|
|
|
+ "start:prod": "yarn start --dotenv .env.prod",
|
|
|
+ "deploy": "git pull && yarn install && yarn build && pm2 start frames",
|
|
|
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
|
|
|
"lint": "yarn lint:js",
|
|
|
"test": "jest",
|
|
|
@@ -43,7 +51,7 @@
|
|
|
"@vue/test-utils": "^1.2.1",
|
|
|
"babel-core": "7.0.0-bridge.0",
|
|
|
"babel-jest": "^27.0.5",
|
|
|
- "cypress": "^8.5.0",
|
|
|
+ "cypress": "8.7.0",
|
|
|
"eslint": "^7.29.0",
|
|
|
"eslint-plugin-cypress": "^2.12.1",
|
|
|
"eslint-plugin-nuxt": "^2.0.0",
|