-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) Β· 1.11 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
{
"name": "social-network",
"version": "1.0.0",
"main": "index.js",
"author": "Vinicius Queiroz",
"license": "MIT",
"scripts": {
"dev": "npx ts-node-dev src/index.ts",
"test": "npx jest",
"build": "npx tsc"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.14.0",
"faker": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.14",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"ts-jest": "^27.1.1",
"typescript": "^4.5.2",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.3",
"@types/jsonwebtoken": "^8.5.6",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.11",
"@types/validator": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"jest": "^27.4.3",
"ts-node-dev": "^1.1.8"
}
}