{
  "name": "aida-nlp",
  "version": "0.1.8",
  "description": "Build chatbots powered by simple deep learning models",
  "bin": {
    "aida-nlp": "./dist/bin.js"
  },
  "main": "./dist/main.js",
  "dependencies": {
    "@tensorflow/tfjs": "1.2.7",
    "@tensorflow/tfjs-node": "1.2.7",
    "chatito": "2.3.4",
    "lodash": "4.17.15",
    "ts-node": "8.3.0"
  },
  "devDependencies": {
    "@babel/core": "7.5.5",
    "@babel/plugin-proposal-class-properties": "7.5.5",
    "@babel/plugin-syntax-dynamic-import": "7.2.0",
    "@babel/plugin-syntax-import-meta": "7.2.0",
    "@babel/preset-env": "7.5.5",
    "@babel/preset-react": "7.0.0",
    "@babel/preset-typescript": "7.3.3",
    "@types/file-saver": "2.0.1",
    "@types/history": "4.7.2",
    "@types/lodash": "4.14.136",
    "@types/node": "12.7.1",
    "@types/react": "16.9.1",
    "@types/react-dom": "16.8.5",
    "@types/react-helmet": "5.0.9",
    "@types/react-router-dom": "4.3.4",
    "antd": "3.21.4",
    "axios": "0.19.0",
    "babel-loader": "8.0.6",
    "babel-plugin-import": "1.12.0",
    "babel-plugin-styled-components": "1.10.6",
    "chrono-node": "1.3.11",
    "codeflask": "1.4.1",
    "file-saver": "2.0.2",
    "gatsby": "2.13.57",
    "gatsby-plugin-google-analytics": "2.1.7",
    "gatsby-plugin-react-helmet": "3.1.3",
    "gatsby-plugin-sharp": "2.2.11",
    "gatsby-plugin-styled-components": "3.1.2",
    "gatsby-plugin-typescript": "2.1.2",
    "gatsby-remark-copy-linked-files": "2.1.4",
    "gatsby-remark-images": "3.1.8",
    "gatsby-source-filesystem": "2.1.9",
    "gatsby-transformer-remark": "2.6.12",
    "gh-pages": "2.1.1",
    "prettier": "1.18.2",
    "rc-queue-anim": "1.7.0",
    "rc-scroll-anim": "2.5.9",
    "rc-tween-one": "2.5.0",
    "react": "16.9.0",
    "react-dom": "16.9.0",
    "react-helmet": "5.2.1",
    "react-json-view": "1.19.1",
    "react-player": "1.11.1",
    "react-simple-chatbot": "0.6.1",
    "styled-components": "4.3.2",
    "tslint": "5.18.0",
    "tslint-config-prettier": "1.18.0",
    "tslint-plugin-prettier": "2.0.1",
    "typescript": "3.5.3"
  },
  "scripts": {
    "lint": "npx tslint -c tslint.json 'src/**/*.ts'",
    "cleanup": "rm -rf dist && rm -rf .cache && find public -not -name models -maxdepth 1 -not -name public -not -iname '*.png' -not -iname '*.ico' -not -iname '*.xml' -not -iname '*.svg' -not -iname '*.webmanifest' -exec rm -rv {} \\;",
    "prepublish": "rm -rf ./dist && tsc --project ./tsconfig_npm.json --skipLibCheck",
    "prettier": "prettier --write '{web,src}/**/*.{ts,tsx}'",
    "dictionary:en:generate": "ts-node src/utils/createDictionaryFromFastext.ts en",
    "dictionary:es:generate": "ts-node src/utils/createDictionaryFromFastext.ts es",
    "dataset:en:generate": "npm run dataset:en:delete && mkdir ./examples/en/data && npx chatito ./examples/en --outputPath=./examples/en/data",
    "dataset:en:delete": "rm -rf ./examples/en/data",
    "dataset:en:process": "npm run dataset:en:generate && ts-node src/utils/processDatasets.ts ./examples/en/aidaConfig.json && npm run dataset:en:delete",
    "dataset:es:generate": "npm run dataset:es:delete && mkdir ./examples/es/data && npx chatito ./examples/es --outputPath=./examples/es/data",
    "dataset:es:delete": "rm -rf ./examples/es/data",
    "dataset:es:process": "npm run dataset:es:generate && ts-node src/utils/processDatasets.ts ./examples/es/aidaConfig.json && npm run dataset:es:delete",
    "web:build": "npm run cleanup && gatsby build",
    "web:build:try": "npm run web:build && http-server public --gzip",
    "web:start": "npm run cleanup && gatsby develop",
    "web:deploy": "npm run cleanup && gatsby build && echo aida.dor.ai > public/CNAME && gh-pages -d public",
    "node:start": "mkdir -p ./public/models/pretrained/node/classification && mkdir -p ./public/models/pretrained/node/ner && ts-node src/node.ts",
    "node:start:debug": "export TS_NODE_FILES=true && node --inspect-brk node_modules/.bin/ts-node src/node.ts "
  },
  "engines": {
    "node": ">=8.11.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rodrigopivi/aida.git"
  },
  "keywords": [
    "chatbot",
    "chatbots",
    "conversational ux",
    "conversational user experience",
    "virtual assistant",
    "natural language processing",
    "natural language understanding",
    "nlp"
  ],
  "author": "Rodrigo Pimentel",
  "homepage": "https://aida.dor.ai",
  "license": "MIT"
}
