-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "precision-bookkeeping-platform",
"version": "1.0.0",
"description": "Automated bookkeeping platform for Precision Bookkeeping",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon server/index.js",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"start": "node server/index.js",
"test": "jest",
"migrate": "node server/scripts/migrate.js"
},
"dependencies": {
"aws-sdk": "^2.1490.0",
"bcryptjs": "^2.4.3",
"bull": "^4.12.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^8.1.0",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.7",
"pdf-parse": "^1.1.1",
"pg": "^8.11.3",
"plaid": "^11.0.0",
"quickbooks": "^1.0.0",
"redis": "^4.6.10",
"sequelize": "^6.35.0",
"tesseract.js": "^5.0.2",
"winston": "^3.11.0"
},
"devDependencies": {
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3"
},
"keywords": [
"bookkeeping",
"automation",
"quickbooks",
"accounting"
],
"author": "David Ramirez",
"license": "MIT"
}