-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.89 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
{
"name": "tech-guardian",
"version": "1.0.0",
"description": "Simple help desk app",
"main": "src/server.js",
"scripts": {
"build:server:dev": "webpack --mode development ./webpack.server.js --watch",
"build:client:dev": "webpack --mode development ./webpack.client.js",
"dev": "nodemon .src/server.js",
"start:prod": "pm2-runtime start ecosystem.config.js --env production",
"start:dev": "npm-run-all --parallel dev build:dev",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JohnPetros/tech-guardian.git"
},
"keywords": [
"helpdesk",
"nodejs",
"ejs"
],
"author": "Jonh Petros",
"license": "MIT License",
"bugs": {
"url": "https://github.com/JohnPetros/tech-guardian/issues"
},
"homepage": "https://github.com/JohnPetros/tech-guardian#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-session-knex": "^3.0.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-flash-message": "^3.0.2",
"express-session": "^1.17.3",
"knex": "^2.5.1",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.2",
"pm2": "^5.3.0",
"tty-browserify": "^0.0.1",
"uuidv4": "^6.2.13",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"babel-loader": "^9.1.3",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.8.1",
"dotenv": "^16.3.1",
"html-webpack-plugin": "^5.5.3",
"https-browserify": "^1.0.0",
"jest": "^29.6.2",
"mini-css-extract-plugin": "^2.7.6",
"node-polyfill-webpack-plugin": "^2.0.1",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}