-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "jobs_finder",
"version": "1.0.0",
"description": "RESTFUL API for recruiting job applicants and find job offers",
"main": "app.js",
"scripts": {
"test": "npx mocha --require ts-node/register 'test/**/*.test.ts' --timeout 10000 ",
"start": "node build/app.js",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only src/app.ts",
"build": "tsc",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"morgan": "^1.10.0",
"mysql2": "^3.14.1",
"sequelize": "^6.37.7",
"winston": "^3.17.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OmarKHDR/job-finder.git"
},
"keywords": [
"jobs",
"restfulapi",
"job",
"finding"
],
"author": "OmarKHDR",
"license": "ISC",
"bugs": {
"url": "https://github.com/OmarKHDR/job-finder/issues"
},
"homepage": "https://github.com/OmarKHDR/job-finder#readme",
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/morgan": "^1.9.9",
"@types/supertest": "^6.0.3",
"bcrypt": "^6.0.0",
"chai": "^5.2.0",
"chai-http": "^5.1.2",
"chai-snapshot-matcher": "^2.0.3",
"jsonwebtoken": "^9.0.2",
"mocha": "^11.5.0",
"supertest": "^7.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
}
}