-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1014 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1014 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
36
37
38
39
40
41
42
{
"name": "timetracking",
"version": "2.0.0",
"description": "",
"main": "index.js",
"files": [
"dist/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack && chmod +x dist/*.sh && chmod +x dist/*.bat",
"setup": "node setup.js",
"push:this-month": "node push-jira.js \"$(date +'%Y-%m')\"",
"push:today": "node push-jira.js \"$(date +'%Y-%m-%d')\""
},
"author": "",
"sideEffects": [
"setup.js",
"push-jira.js",
"index.js",
"invoice.js"
],
"license": "ISC",
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"dotenv": "^16.4.5",
"google-auth-library": "^9.9.0",
"googleapis": "^135.0.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-duration-format": "^2.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}