Install NodeJS, TypeScript, ExpressJS and ESLint
Install NodeJS, TypeScript, ExpressJS and ESLint with initial configuration files. Add initial instructions to README.md
This commit is contained in:
parent
a37c58ed5e
commit
74c1ee1b7b
6 changed files with 2592 additions and 0 deletions
34
package.json
Normal file
34
package.json
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"name": "projectmark-rodrigo",
|
||||
"version": "1.0.0",
|
||||
"description": "Take home test for ProjectMark",
|
||||
"main": "dist/app.js",
|
||||
"scripts": {
|
||||
"start": "tsc && node dist/app.js",
|
||||
"lint": "eslint . --ext .ts",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/Rodrigoplp/ProjectMark-Rodrigo.git"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"type": "commonjs",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Rodrigoplp/ProjectMark-Rodrigo/issues"
|
||||
},
|
||||
"homepage": "https://github.com/Rodrigoplp/ProjectMark-Rodrigo#readme",
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.23.0",
|
||||
"@types/express": "^5.0.1",
|
||||
"eslint": "^9.23.0",
|
||||
"globals": "^16.0.0",
|
||||
"typescript": "^5.8.2",
|
||||
"typescript-eslint": "^8.29.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"express": "^5.1.0"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue