-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.51 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
{
"name": "hire-archy",
"version": "1.0.0",
"description": "Conquer job hunting with Hire-archy!",
"main": "server/infra/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npm run backend:dev & npm run front:dev",
"backend:dev": "nodemon server/infra/server.js",
"front:dev": "NODE_ENV=development webpack server --open",
"front:build": "NODE_ENV=production webpack server --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/team-charizard-codesmith/Hire-archy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/team-charizard-codesmith/Hire-archy/issues"
},
"homepage": "https://github.com/team-charizard-codesmith/Hire-archy#readme",
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"babel": "^6.23.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"dotenv": "^16.4.5",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.1",
"style-loader": "^3.3.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/node": "^20.11.19",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"ts-node-dev": "^2.0.0",
"webpack-dev-server": "^4.15.1"
}
}