-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "gmail-helper",
"version": "1.3.19",
"description": "Project will be responsible to create different gmail widgets",
"engines": {
"node": "^12.4.0"
},
"scripts": {
"build": "npm run del && npm run compile && lerna run lerna:build",
"build:dev": "npm run del && npm run compile:watch && lerna run lerna:build",
"compile": "tsc",
"compile:watch": "tsc --watch",
"del": "rm -rf server/",
"start": "node server/api/server.js",
"start:api:dev": "nodemon server/api/server.js localhost 8080",
"test": "echo \"Error: no test specified\" && exit 1",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimitardanailov/gmail-helper.git"
},
"keywords": [
"gmail",
"gmail-helper",
"gmail-widget",
"gmail-nodejs"
],
"author": "Dimitar Danailov <dimityr.danailov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dimitardanailov/gmail-helper/issues"
},
"homepage": "https://github.com/dimitardanailov/gmail-helper#readme",
"dependencies": {
"dotenv": "^8.0.0",
"express": "^4.16.4",
"googleapis": "^42.0.0",
"log4js": "^4.5.1",
"redux": "^4.0.1",
"snyk": "^1.996.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/gapi.client.gmail": "^1.0.0",
"@types/node": "^12.7.1",
"lerna": "^3.16.4",
"nodemon": "^1.18.8"
},
"snyk": true
}