brightScreen.io/package.json
2020-09-13 00:36:05 -05:00

27 lines
677 B
JSON

{
"name": "brightscreenapi",
"version": "1.0.0",
"description": "Api that powers the brightScreen Vs Code Extention",
"main": "index.js",
"scripts": {
"server": "ts-node ./src/index.ts",
"web": "cd ./web && npm start",
"build-web": "cd ./web && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Joshua Shoemaker",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.10.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/mongoose": "^5.7.36"
}
}