-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "caffeine-api",
"private": false,
"version": "1.0.0",
"main": "src/index.ts",
"author": "Nath Paiva",
"license": "MIT",
"engines": {
"node": "18.17.0"
},
"scripts": {
"dev": "yarn start",
"start": "nodemon src/index.ts -L --files",
"test:ci": "jest",
"test": "jest --watch",
"lint": "eslint src --ext .ts",
"format": "eslint src --ext .ts --fix"
},
"devDependencies": {
"@nathpaiva/eslint-config": "^1.0.0",
"@nathpaiva/prettier-config": "^1.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.15",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.4",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"body-parser": "^1.19.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-prettier": "^5.0.0",
"express": "^4.17.3",
"express-validator": "^7.0.1",
"jest": "^29.6.1",
"jsonwebtoken": "^9.0.1",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"helmet": "^7.0.0",
"mongoose": "^7.3.1",
"typescript": "^5.1.6",
"winston": "^3.9.0"
}
}