Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

next-multilingual

Package Overview
Dependencies
Maintainers
1
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

next-multilingual - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

48

package.json
{
"name": "next-multilingual",
"description": "An opinionated end-to-end solution for Next.js applications that requires multiple languages.",
"version": "1.0.1",
"version": "1.0.2",
"license": "MIT",

@@ -86,3 +86,2 @@ "main": "lib/index.js",

"scripts": {
"build_watch": "npm-watch",
"build": "rm -Rf ./lib && tsc",

@@ -96,16 +95,16 @@ "type-check": "tsc --project tsconfig.json --pretty --noEmit",

"cypress": "cypress open",
"cypress:headless": "cypress run",
"cypress-headless": "cypress run",
"e2e": "start-server-and-test start-example http://localhost:3000 cypress",
"e2e:base-path": "cross-env BASE_PATH=/some-path CYPRESS_basePath=/some-path start-server-and-test start-example http://localhost:3000/some-path cypress",
"e2e:headless": "start-server-and-test start-example http://localhost:3000 cypress:headless",
"e2e:headless:base-path": "cross-env BASE_PATH=/some-path CYPRESS_basePath=/some-path start-server-and-test start-example http://localhost:3000/some-path cypress:headless",
"e2e:build": "cross-env CYPRESS_isProd=true start-server-and-test start-example-build http://localhost:3000 cypress",
"e2e:build:base-path": "cross-env CYPRESS_isProd=true BASE_PATH=/some-path CYPRESS_basePath=/some-path start-server-and-test start-example-build http://localhost:3000/some-path cypress",
"e2e:build:headless": "cross-env CYPRESS_isProd=true start-server-and-test start-example-build http://localhost:3000 cypress:headless",
"e2e:build:headless:base-path": "cross-env CYPRESS_isProd=true BASE_PATH=/some-path CYPRESS_basePath=/some-path start-server-and-test start-example-build http://localhost:3000/some-path cypress:headless",
"test": "npm run e2e:headless && npm run e2e:headless:base-path && npm run e2e:build:headless && npm run e2e:build:headless:base-path",
"test-with-pauses": "npm run e2e:headless && echo ☝️ normal dev run && cross-env echo && pause && npm run e2e:headless:base-path && echo ☝️ dev run with base path && cross-env echo && pause && npm run e2e:build:headless && echo ☝️ normal build run && cross-env echo && pause && npm run e2e:build:headless:base-path && echo ☝️ build run with base path"
"e2e-base-path": "cross-env BASE_PATH=/some-path CYPRESS_basePath=/some-path start-server-and-test start-example http://localhost:3000/some-path cypress",
"e2e-headless": "start-server-and-test start-example http://localhost:3000 cypress-headless",
"e2e-headless-base-path": "cross-env BASE_PATH=/some-path CYPRESS_basePath=/some-path start-server-and-test start-example http://localhost:3000/some-path cypress-headless",
"e2e-build": "cross-env CYPRESS_isProd=true start-server-and-test start-example-build http://localhost:3000 cypress",
"e2e-build-base-path": "cross-env CYPRESS_isProd=true BASE_PATH=/some-path CYPRESS_basePath=/some-path start-server-and-test start-example-build http://localhost:3000/some-path cypress",
"e2e-build-headless": "cross-env CYPRESS_isProd=true start-server-and-test start-example-build http://localhost:3000 cypress-headless",
"e2e-build-headless:base-path": "cross-env CYPRESS_isProd=true BASE_PATH=/some-path CYPRESS_basePath=/some-path start-server-and-test start-example-build http://localhost:3000/some-path cypress-headless",
"test": "npm run e2e-headless && npm run e2e-headless-base-path && npm run e2e-build-headless && npm run e2e-build-headless:base-path",
"test-with-pauses": "npm run e2e-headless && echo ** normal dev run ** && cross-env echo && pause && npm run e2e-headless-base-path && echo ** dev run with base path ** && cross-env echo && pause && npm run e2e-build-headless && echo ** normal build run ** && cross-env echo && pause && npm run e2e-build-headless:base-path && echo ** build run with base path **"
},
"dependencies": {
"@babel/core": "^7.18.5",
"@babel/core": "^7.18.6",
"cheap-watch": "^1.0.4",

@@ -115,4 +114,4 @@ "colorette": "^2.0.19",

"nookies": "^2.5.2",
"properties-file": "^2.0.1",
"resolve-accept-language": "^1.1.6"
"properties-file": "^2.0.3",
"resolve-accept-language": "^1.1.8"
},

@@ -127,23 +126,22 @@ "devDependencies": {

"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"@typescript-eslint/types": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"@typescript-eslint/types": "^5.30.0",
"cross-env": "^7.0.3",
"cypress": "^10.1.0",
"cypress": "^10.3.0",
"cypress-fail-on-console-error": "^3.0.0",
"dotenv-cli": "^5.1.0",
"eslint": "^8.18.0",
"eslint-config-next": "v12.1.6",
"eslint-config-next": "v12.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"next": "v12.1.6",
"npm-watch": "^0.11.0",
"lint-staged": "^13.0.3",
"next": "v12.2.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "^15.0.0",
"release-it": "^15.1.1",
"start-server-and-test": "^1.14.0",

@@ -150,0 +148,0 @@ "typescript": "4.7.4"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc