generated from fionn/ts-template
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.
33 lines
1000 B
33 lines
1000 B
2 years ago
|
{
|
||
|
"name": "app",
|
||
|
"version": "1.0.0",
|
||
|
"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": {
|
||
|
"express": "^4.18.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/express": "^4.17.13",
|
||
|
"@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"
|
||
|
}
|
||
|
}
|