forked from freeCodeCamp/boilerplate-project-exercisetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "exercise-tracker",
"version": "0.1.0",
"description": "A REST API exercise tracker project, part of Free Code Camp's back end and API certfication.",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"dev": "nodemon index.ts",
"build": "tsc",
"format": "prettier -w *",
"lint": "eslint ./src/"
},
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.3",
"validator": "^13.11.0"
},
"repository": {
"url": "https://github.com/nicole-lancaster/boilerplate-project-exercisetracker"
},
"license": "MIT",
"keywords": [
"node",
"express",
"mongoose",
"mongodb",
"exercise-tracker",
"free-code-camp"
],
"author": "Nicole Lancaster",
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.5",
"@types/validator": "^13.11.8",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-eslint": "^8.4.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}