-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 938 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 938 Bytes
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
{
"name": "job-application-tracker-be",
"type": "module",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=20.x"
},
"scripts": {
"start": "node index.js",
"dev": "node --watch --env-file=.env index.js",
"format": "prettier --write ./",
"postinstall": "prisma generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.9.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.21.0",
"express-cors": "^0.0.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"pg": "^8.16.0",
"react-icons": "^5.3.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.0",
"chalk": "^5.3.0",
"prettier": "^3.0.3",
"prisma": "^6.9.0"
}
}