Files
Ucharify_api/package.json
T
2019-03-13 22:10:06 -07:00

41 lines
1.1 KiB
JSON

{
"name": "ucharify_api",
"version": "1.0.0",
"description": "Backend API for Ucharify. Completely separate infrastructure that connects to DB.",
"main": "index.js",
"scripts": {
"dev": "nodemon bin/dev.js",
"test": "nodemon bin/test.js",
"drop:local": "DROP_TABLES=true node bin/dev.js",
"drop:test": "DROP_TABLES=true node bin/test.js",
"drop:local:windows": "SET DROP_TABLES=true&& node bin/dev.js",
"drop:test:windows": "SET DROP_TABLES=true&& node bin/test.js",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/talksik/Ucharify_api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/talksik/Ucharify_api/issues"
},
"homepage": "https://github.com/talksik/Ucharify_api#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"morgan": "^1.9.1",
"mysql2": "^1.6.4",
"sequelize": "^4.42.0",
"sequelize-cli": "^5.4.0",
"stripe": "^6.22.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"dotenv-flow": "^0.2.0"
}
}