-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 826 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 826 Bytes
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
{
"name": "harvest",
"version": "1.0.0",
"description": "A nodeJS script for updating Harvest Project on a scheduled basis.",
"main": "app.js",
"scripts": {
"dev": "NODE_ENV=dev node app.js",
"prod": "NODE_ENV=production node app.js",
"http": "NODE_ENV=dev node services/http.js",
"addUser": "NODE_ENV=production node tasks/addUser.js"
},
"keywords": [
"Harvest",
"nodeJS",
"time tracking"
],
"author": "Simon Browning",
"license": "ISC",
"dependencies": {
"config": "^1.24.0",
"cron": "^1.3.0",
"express": "^4.16.4",
"moment": "^2.17.1",
"node-cache": "^4.2.0",
"request": "^2.79.0",
"requestretry": "^1.12.2",
"simple-node-logger": "^0.93.14",
"throttled-request": "^0.1.1",
"underscore": "^1.8.3",
"xml-js": "^1.6.2"
},
"devDependencies": {
"node-notifier": "^5.1.2"
}
}