-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "expense-share-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "env-cmd -f ./config/dev.env nodemon --exec ts-node ./src/index.ts",
"test": "env-cmd -f ./config/test.env jest --watchAll --detectOpenHandles --runInBand --config ./jest.config.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/jsonwebtoken": "^9.0.3",
"@types/multer": "^1.4.7",
"@types/sharp": "^0.32.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.2",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1",
"request": "^2.88.2",
"sharp": "^0.32.6",
"supertest": "^6.3.3",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.16",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.5",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.6.3",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.11.1",
"env-cmd": "^10.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}