You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iassure-wx-old/backend/package.json

38 lines
1.1 KiB

2 years ago
{
"name": "app",
"version": "1.1.0",
2 years ago
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"predev": "npm install && rimraf dist/*",
"start": "node --inspect=0.0.0.0:9229 --es-module-specifier-resolution=node dist/app.js",
"dev": "tsc-watch --onSuccess \"npm run start\" --onFailure \"echo WHOOPS! Server compilation failed\""
},
"keywords": [],
"author": "Fionn Sperath",
"license": "ISC",
"dependencies": {
2 years ago
"axios": "^1.3.4",
"express": "^4.18.1",
"morgan": "^1.10.0",
"node-schedule": "^2.1.1"
2 years ago
},
"devDependencies": {
"@types/express": "^4.17.13",
2 years ago
"@types/morgan": "^1.9.4",
2 years ago
"@types/node": "^18.7.6",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.23.1",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"rimraf": "^3.0.2",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
}
2 years ago
}