kill-the-newsletter/package.json

25 lines
545 B
JSON
Raw Normal View History

2020-03-18 03:19:05 +01:00
{
"scripts": {
"start": "node src/index.js",
"test": "tsc && prettier --check 'src/**'",
"dev:start": "concurrently \"tsc --watch\" \"nodemon lib/index.js\""
},
"dependencies": {
"express": "^4.17.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"concurrently": "^5.1.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"jest": {
"rootDir": "lib",
"testEnvironment": "node"
}
}