From 62ff4a6376d309fe06de50b4b0f9781e63b93f64 Mon Sep 17 00:00:00 2001 From: Will Crichton Date: Wed, 22 Jun 2022 18:25:30 -0700 Subject: [PATCH] Don't keep any external dependencies --- js/package.json | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/js/package.json b/js/package.json index 4ea1ed7..7467440 100644 --- a/js/package.json +++ b/js/package.json @@ -10,20 +10,6 @@ "lint": "eslint --ext js,ts,tsx lib", "fmt": "prettier -w \"lib/**/*.{ts,tsx}\"" }, - "dependencies": { - "@iarna/toml": "^2.2.5", - "ajv": "^8.11.0", - "axios": "^0.27.2", - "better-ajv-errors": "^1.2.0", - "classnames": "^2.3.1", - "lodash": "^4.17.21", - "mobx": "^6.6.0", - "mobx-react": "^7.5.0", - "react": "^18.1.0", - "react-dom": "^18.1.0", - "react-showdown": "^2.3.1", - "uuid": "^8.3.2" - }, "devDependencies": { "@nota-lang/esbuild-utils": "^0.3.7", "@trivago/prettier-plugin-sort-imports": "^3.2.0", @@ -43,6 +29,18 @@ "eslint-plugin-react-hooks": "^4.5.0", "prettier": "^2.6.2", "ts-json-schema-generator": "^1.0.0", - "typescript": "4.6.4" + "typescript": "4.6.4", + "ajv": "^8.11.0", + "@iarna/toml": "^2.2.5", + "better-ajv-errors": "^1.2.0", + "lodash": "^4.17.21", + "axios": "^0.27.2", + "classnames": "^2.3.1", + "mobx": "^6.6.0", + "mobx-react": "^7.5.0", + "react": "^18.1.0", + "react-dom": "^18.1.0", + "react-showdown": "^2.3.1", + "uuid": "^8.3.2" } }