-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "Journaling-app-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Shulammite-Aso/Journaling-app-api.git",
"author": "Shulammite-Aso <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon --config nodemon.json src/app.ts",
"start": "ts-node dist/src/app.js",
"build": "tsc -p .",
"db": "docker-compose -f docker-compose.yaml up",
"test": "mocha -r ts-node/register 'src/test/**/*.ts'",
"testb": "jest"
},
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"config": "^3.3.6",
"dayjs": "^1.10.6",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.13.2",
"pino": "^6.12.0",
"pino-pretty": "^5.1.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.1",
"@types/chai": "^4.2.22",
"@types/compression": "^1.7.1",
"@types/config": "^0.0.39",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.14.171",
"@types/mocha": "^9.0.0",
"@types/node": "^16.3.2",
"@types/pino": "^6.3.9",
"@types/yup": "^0.29.13",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"jest": "^27.0.6",
"mocha": "^9.1.1",
"nodemon": "^2.0.12",
"ts-node": "^10.4.0",
"typescript": "^4.3.5"
}
}