-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.98 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "neabi",
"version": "0.0.0",
"description": "NEABI backend",
"main": "src/main/server.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/VictorKayk/NEABI-backend.git"
},
"keywords": [
"NEABI"
],
"author": "Victor Kayk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/VictorKayk/NEABI-backend/issues"
},
"homepage": "https://github.com/VictorKayk/NEABI-backend#readme",
"engines": {
"node": "18.x"
},
"scripts": {
"build": "npx tsc -p tsconfig-build.json",
"start": "npm run build && node dist/main/server.js",
"dev": "ts-node-dev --respawn --transpile-only ./src/main/server.ts",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"test": "jest --passWithNoTests --detectOpenHandles --runInBand --logHeapUsage",
"test:verbose": "jest --passWithNoTests",
"test:all": "npm run test -- --watch",
"test:unit": "npm run test -- --watch -c ./jest-unit.config.js",
"test:integration": "npm run test -- --watch -c ./jest-integration.config.js",
"test:staged": "npm run test -- --findRelatedTests",
"test:coverage": "npm run test -- --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/module-alias": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.3",
"@types/nodemailer": "^6.4.5",
"@types/passport-google-oauth20": "^2.0.11",
"@types/sanitize-html": "^2.6.2",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"prettier": "^2.4.1",
"prisma": "^4.5.0",
"rimraf": "^3.0.2",
"supertest": "^6.2.4",
"ts-jest": "^28.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@prisma/client": "^4.5.0",
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"google-auth-library": "^8.6.0",
"googleapis": "^108.0.0",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.7.8",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"sanitize-html": "^2.7.2",
"slugify": "^1.6.5",
"striptags": "^3.2.0",
"swagger-ui-express": "^4.5.0",
"uuid": "^8.3.2"
},
"_moduleAliases": {
"@": "dist"
}
}