-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "portfolio-api",
"version": "1.0.0",
"description": "API for fran.netlify.app",
"main": "index.js",
"engines": {
"node": "16.14.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node dist/server.js",
"dev": "tsc && nodemon dist/server.js",
"lint": "eslint --ext .ts .",
"lint-fix": "eslint --ext .ts . --fix",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"dotenv": "^16.0.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"express": "^4.20.0",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^6.0.0",
"mongoose": "^8.0.0",
"prettier": "^2.7.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.7.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"husky": "^8.0.0"
}
}