Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/Savy011/fullstackopen-exercises. My Exercise Submissions for FullStack Open fullstackopen.com/en
Something went wrong. Try again.
723 B · 29 lines
JSON
at main
123456789101112131415161718192021222324252627282930{ "name": "first-scripts", "version": "1.0.0", "description": "", "main": " ", "scripts": { "start": "ts-node index.ts", "dev": "ts-node-dev index.ts", "calculateBmi": "ts-node bmiCalculator.ts", "calculateExercises": "ts-node exerciseCalculator.ts", "lint": "eslint --ext .ts .", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Savy", "license": "ISC", "devDependencies": { "@types/express": "^4.17.17", "@types/lodash": "^4.14.194", "@types/node": "^20.2.3", "@typescript-eslint/eslint-plugin": "^5.59.7", "@typescript-eslint/parser": "^5.59.7", "eslint": "^8.41.0", "ts-node-dev": "^2.0.0" }, "dependencies": { "express": "^4.18.2", "lodash": "^4.17.21" }}