-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·93 lines (93 loc) · 2.66 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
{
"name": "trainees-monitor-backend",
"version": "1.0.0",
"description": "Trainees monitoring application on Online Judges made for acmAscis",
"main": "dist/index.js",
"engines": {
"node": "14.15.3",
"npm": "6.14.9"
},
"scripts": {
"start": "npm run start:server",
"start:dev": "nodemon src/index.js",
"build": "./node_modules/.bin/npm-run-all clean build:ts",
"start:server": "node dist/index.js",
"watch:server": "nodemon dist/index.js",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"postinstall": "npm run build:ts",
"test": "jest --forceExit --verbose",
"test-coverage": "jest --forceExit --coverage --verbose",
"watch:test": "npm run test -- --watchAll",
"watch:test-coverage": "npm run test-coverage -- --watchAll",
"clean": "rimraf dist",
"lint": "tslint -c tslint.json -p tsconfig.json",
"lint-staged": "lint-staged",
"prettier": "prettier --config ./.prettierrc --write \"src/**/*.ts\"",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm-run-all lint-staged lint build test"
}
},
"lint-staged": {
"*.ts": [
"npm run prettier",
"git add"
]
},
"keywords": [],
"author": "Khaled Mohamed <Khal3d.Mohamed@gmail.com>",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bcrypt": "^3.0.0",
"@types/compression": "1.7.0",
"@types/cors": "^2.8.9",
"@types/crypto-js": "^4.0.1",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.9",
"@types/helmet": "0.0.48",
"@types/jest": "^26.0.19",
"@types/joi": "^13.4.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.167",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.2.9",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.19",
"@types/supertest": "^2.0.10",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.3.1",
"joi": "^13.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"mongoose": "^5.2.12",
"morgan": "^1.10.0"
}
}