-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "portfolio-api",
"version": "1.0.0",
"description": "Rusiru Abhisheak portfolio API",
"main": "index.js",
"scripts": {
"start": "node dist/app.js",
"dev": "npm run build && npm run start",
"build": "tsc -p .",
"test": "jest --forceExit --detectOpenHandles -c ./jest.unit.json",
"test:coverage": "jest --coverage -c ./jest.unit.json"
},
"author": "Rusiru Abhisheak",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"config": "^3.3.6",
"cors": "^2.8.5",
"dayjs": "^1.10.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jest": "^27.0.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.12.13",
"nanoid": "^3.1.23",
"pino": "^6.11.3",
"pino-pretty": "^5.0.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.0",
"@types/config": "0.0.38",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.170",
"@types/mongoose": "^5.11.97",
"@types/nanoid": "^3.0.0",
"@types/node": "^15.12.1",
"@types/pino": "^6.3.8",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}