-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.97 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
{
"name": "placementcell",
"version": "1.0.0",
"description": "A MERN Stack App that provides a company recruitment preparation portal for students.",
"main": "server.js",
"engines": {
"node": ">=12.22.12"
},
"scripts": {
"build": "cd src && esbuild `find . \\( -name '*.ts' \\)` --bundle --outdir=../ --platform=node",
"compile": "tsc",
"dev": "nodemon src/server.ts",
"test": "npm run compile && npm run unit",
"lint": "eslint '*.ts' --quiet --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vijethph/PlacementCell.git",
"directory": "src"
},
"keywords": [
"mongoDB",
"placement",
"express",
"app",
"typescript"
],
"author": "Sathya M, Vijeth P H",
"license": "MIT",
"bugs": {
"url": "https://github.com/vijethph/PlacementCell"
},
"homepage": "https://github.com/vijethph/PlacementCell#readme",
"babel": {
"presets": [
"@babel/preset-typescript"
]
},
"dependencies": {
"@types/express": "^4.17.17",
"axios": "^1.3.5",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"esbuild": "^0.18.11",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"pino": "^8.11.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.21.4",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"esbuild-jest": "^0.5.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"nodemon": "^2.0.22",
"prettier": "2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}