kill-the-newsletter/package.json

35 lines
865 B
JSON
Raw Normal View History

2020-03-18 03:19:05 +01:00
{
"scripts": {
2020-03-18 06:01:23 +01:00
"test": "tsc && jest && prettier --check 'src/**'",
2020-03-19 01:28:41 +01:00
"develop": "concurrently \"tsc --watch\" \"nodemon lib/index.js\""
2020-03-18 03:19:05 +01:00
},
"dependencies": {
2020-03-18 17:22:18 +01:00
"crypto-random-string": "^3.2.0",
2020-03-18 03:19:05 +01:00
"express": "^4.17.1",
2020-03-18 04:07:48 +01:00
"react": "^16.13.0",
"react-dom": "^16.13.0",
2020-03-19 03:41:40 +01:00
"smtp-server": "^3.6.0",
2020-03-18 03:19:05 +01:00
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
2020-03-18 17:22:18 +01:00
"@types/node": "^13.9.1",
2020-03-19 01:16:00 +01:00
"@types/node-fetch": "^2.5.5",
2020-03-18 04:07:48 +01:00
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
2020-03-19 03:41:40 +01:00
"@types/smtp-server": "^3.5.3",
2020-03-18 17:22:18 +01:00
"@types/xml2js": "^0.4.5",
2020-03-18 03:19:05 +01:00
"concurrently": "^5.1.0",
"jest": "^25.1.0",
2020-03-19 01:16:00 +01:00
"node-fetch": "^2.6.0",
2020-03-18 03:19:05 +01:00
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"typescript": "^3.8.3"
},
"jest": {
"rootDir": "lib",
"testEnvironment": "node"
}
}