33 lines
799 B
JSON
33 lines
799 B
JSON
{
|
|
"scripts": {
|
|
"test": "tsc && jest && prettier --check 'src/**'",
|
|
"develop": "concurrently \"tsc --watch\" \"nodemon lib/server.js\""
|
|
},
|
|
"dependencies": {
|
|
"crypto-random-string": "^3.2.0",
|
|
"express": "^4.17.1",
|
|
"react": "^16.13.0",
|
|
"react-dom": "^16.13.0",
|
|
"xml2js": "^0.4.23"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.3",
|
|
"@types/jest": "^25.1.4",
|
|
"@types/node": "^13.9.1",
|
|
"@types/react": "^16.9.23",
|
|
"@types/react-dom": "^16.9.5",
|
|
"@types/supertest": "^2.0.8",
|
|
"@types/xml2js": "^0.4.5",
|
|
"concurrently": "^5.1.0",
|
|
"jest": "^25.1.0",
|
|
"nodemon": "^2.0.2",
|
|
"prettier": "^1.19.1",
|
|
"supertest": "^4.0.2",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"jest": {
|
|
"rootDir": "lib",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|