-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 892 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
{
"name": "bulkvoidtoolxero",
"version": "4.0.0",
"description": "A tool to bulk void invoice documents in Xero",
"main": "server/index.js",
"type": "module",
"engines": {
"node": "14.x"
},
"scripts": {
"start": "node server",
"server": "nodemon server",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leslie-alldridge/xero-bulk-void-invoice-tool-v2-react.git"
},
"author": "Leslie Alldridge",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.6"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.2",
"express-session": "^1.17.1",
"xero-node": "^4.9.0"
}
}