This repository has been archived by the owner on Nov 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.47 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "taskbot",
"version": "0.2.5",
"author": "Tobiasz Cudnik <[email protected]>",
"description": "TaskBot sync service",
"contributors": [],
"scripts": {
"start": "make start",
"start-https": "make start & node src/server/https.js",
"test": "make test",
"test-service": "TEST=1 make start-am",
"test-debug": "make test-debug",
"test-mocks": "make test-mocks",
"test-gtasks-mocked": "make test-gtasks-mocked",
"next-dev": "cd www && npm run dev"
},
"repository": {
"type": "git",
"url": "https://github.com/TaskSync/taskBot.app"
},
"keywords": [
"gtd",
"tasks",
"mail",
"gdata",
"api",
"spreadsheets",
"gmail",
"google",
"calendar",
"service"
],
"dependencies": {
"@types/inert": "^5.1.1",
"ami-logger": "^0.3.22",
"asyncmachine": "^3.4.0",
"await-semaphore": "^0.1.3",
"colors": "^1.2.5",
"dateformat": "^1.0.12",
"debug": "^3.1.0",
"deepcopy": "^0.6.3",
"deepmerge": "^2.1.1",
"delay": "^2.0.0",
"diff": "^3.5.0",
"escape-string-regexp": "^1.0.5",
"firebase-admin": "^6.0.0",
"gaxios": "^1.2.6",
"gmail-string-query": "0.0.10",
"google-auth-library": "^3.0.1",
"googleapis": "^37.1.0",
"googleapis-common": "^0.3.0",
"hapi": "^17.5.3",
"http-proxy": "^1.18.0",
"inert": "^5.1.0",
"internet-timestamp": "0.0.1",
"js-base64": "^2.4.8",
"lodash": "^4.17.10",
"lokijs": "^1.5.4",
"md5": "^2.2.1",
"moment": "^2.22.1",
"moment-timezone": "^0.5.17",
"printf": "^0.2.5",
"remove-html-comments": "^1.0.2",
"round-to": "^2.0.0",
"simple-random-id": "^1.0.1",
"source-map-support": "^0.5.6",
"supports-color": "^5.4.0",
"suspend": "^0.7.0",
"winston": "^3.0.0"
},
"license": "MIT",
"engine": {
"node": ">=0.8"
},
"devDependencies": {
"@types/debug": "0.0.30",
"@types/deepmerge": "^2.2.0",
"@types/hapi": "^17.0.17",
"@types/jest": "^23.1.5",
"@types/lodash": "^4.14.110",
"@types/lokijs": "^1.5.2",
"@types/mailparser": "^2.0.2",
"@types/moment": "^2.13.0",
"@types/moment-timezone": "^0.5.6",
"@types/node": "^10.3.4",
"jest": "^24.0.0-alpha.16",
"mailparser": "^2.4.3",
"md5": "^2.2.1",
"prettier": "^1.15.3",
"showdown": "^1.8.6",
"sinon": "^7.0.0",
"typescript": "^3.1.1"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"jest": {
"testURL": "http://localhost/"
}
}