-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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": "memorare-back",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"start": "node dist/server.js",
"dev": "nodemon -r tsconfig-paths/register src/server.ts",
"test": "NODE_ENV=test jest --passWithNoTests --runInBand",
"test:coverage": "NODE_ENV=test jest --passWithNoTests --runInBand --coverage --collectCoverageFrom='./src/**'"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.6",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.4",
"tsconfig-paths": "^4.1.2",
"typescript": "4.9.5"
},
"dependencies": {
"@types/pg": "^8.6.6",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"http-status": "^1.6.2",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.0",
"pg": "^8.10.0",
"string-strip-html": "^13.2.1"
}
}