safesupport-bot/package.json

35 lines
936 B
JSON
Raw Normal View History

2020-02-23 00:30:27 +00:00
{
"name": "ocrcc-bot",
"version": "0.1.0",
"description": "Chatbot to manage interactions on OCRCC client chatbots",
"main": "dist/ocrcc-chatbot.js",
"scripts": {
2020-03-15 18:10:59 +00:00
"develop": "nodemon --exec babel-node src/index.js",
"build": "babel src -d dist",
2020-03-16 03:30:00 +00:00
"start": "yarn build && node dist/index.js",
"test": "jest"
2020-02-23 00:30:27 +00:00
},
"author": "",
"license": "ISC",
"dependencies": {
2020-03-16 03:30:00 +00:00
"dotenv": "^8.2.0",
2020-03-15 18:10:59 +00:00
"matrix-js-sdk": "^5.0.1",
2020-02-23 00:30:27 +00:00
"node-localstorage": "^2.1.5",
"olm": "https://packages.matrix.org/npm/olm/olm-3.1.4.tgz",
"uuidv4": "^6.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
2020-03-16 18:41:56 +00:00
"@babel/cli": "^7.8.4",
2020-02-23 18:58:09 +00:00
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
2020-03-16 03:30:00 +00:00
"babel-jest": "^25.1.0",
2020-02-23 18:58:09 +00:00
"babel-plugin-dynamic-import-node": "^2.3.0",
2020-03-16 03:30:00 +00:00
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"nodemon": "^2.0.2",
"wait-for-expect": "^3.0.2"
2020-02-23 00:30:27 +00:00
}
2020-03-16 03:30:00 +00:00
}