-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 895 Bytes
/
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
{
"name": "quickbooks_sync",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "*",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.15.2",
"handy-redis": "^2.3.1",
"intuit-oauth": "^4.0.0",
"morgan": "~1.8.1",
"mysql": "^2.13.0",
"node-quickbooks": "^2.0.39",
"redis": "^3.1.2",
"socket.io": "^4.0.1",
"typeorm": "^0.2.34"
},
"devDependencies": {
"@types/csurf": "^1.11.2",
"@types/express": "^4.17.11",
"@types/morgan": "^1.9.2",
"@types/node": "^16.3.3",
"@types/node-schedule": "^1.3.2",
"@types/redis": "^2.8.32",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.4"
}
}