-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.06 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "gadz",
"version": "1.0.0",
"description": "A website for B2B to do Business.",
"main": "server.js",
"engines": {
"node": "22.x"
},
"scripts": {
"testClient": "cd client && npm run test",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"dev": "cd client2 && npm run dev",
"install": "cd client && npm install",
"build": "npm install && cd client && npm install && npm run build",
"build2": "cd client && npm run build",
"heroku-postbuild": "npm run build",
"lint": "npx eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dagreatcode/GADZ.git"
},
"keywords": [
"B2B",
"Trucking",
"Buy",
"Sell",
"Loads"
],
"author": "Vincent Kendrick",
"license": "ISC",
"bugs": {
"url": "https://github.com/dagreatcode/GADZ/issues"
},
"homepage": "https://github.com/dagreatcode/GADZ#readme",
"dependencies": {
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"cloudinary": "^2.5.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"fs": "^0.0.2",
"if-env": "^1.0.4",
"inquirer": "^9.3.6",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.15",
"path": "^0.12.7",
"pg": "^8.13.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.3",
"sequelize-cockroachdb": "^6.0.5",
"socket.io": "^4.8.0",
"stripe": "^16.12.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^4.5.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"mocha": "^10.7.3",
"nodemon": "^3.1.7",
"sequelize-cli": "^6.6.2",
"typescript": "^5.6.2"
}
}