-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.25 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.25 KB
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
{
"name": "eua-server",
"version": "0.0.1",
"description": "eUniversity Africa API",
"type": "commonjs",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "nodemon src/index.ts",
"test": "jest",
"lint": "npx eslint --max-warnings 0 .",
"lint-fix": "npx eslint --fix .",
"docker:run-build": "docker-compose up --build",
"docker:build": "docker-compose build",
"docker:run": "docker-compose up",
"docker:stop": "docker-compose down",
"prepare": "husky install",
"typeorm": "npm run build && npx typeorm -d dist/data-source.js",
"migration:generate": "POSTGRES_HOST=localhost npm run typeorm -- migration:generate",
"migration:run": "POSTGRES_HOST=localhost npm run typeorm -- migration:run",
"migration:revert": "POSTGRES_HOST=localhost npm run typeorm -- migration:revert"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.2",
"@types/node": "^16.11.10",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"npm": "^9.7.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typeorm-extension": "^2.8.1",
"typescript": "4.9.5"
},
"dependencies": {
"@types/dockerode": "^3.3.19",
"cors": "^2.8.5",
"dockerode": "^3.3.5",
"dockerode-utils": "^0.0.7",
"dotenv": "^16.1.3",
"express": "^4.18.2",
"helmet": "^7.0.0",
"nanoid": "^3.3.4",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"supertest": "^6.3.3",
"typedi": "^0.10.0",
"typeorm": "0.3.16"
},
"prepare": "husky install"
}