-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "gmail-exploration",
"version": "1.1.0",
"description": "Gmail Exploration",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"repository": "https://github.com/bervProject/gmail-exploration.git",
"author": "Bervianto Leo Pratama <bervianto.leo@gmail.com>",
"license": "MIT",
"dependencies": {
"@googleapis/gmail": "^12.0.0",
"node-cron": "^3.0.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^27.4.1",
"@types/node": "^22.10.3",
"@types/node-cron": "^3.0.11",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.5.6",
"ts-node-dev": "^2.0.0",
"tslib": "^2.8.1",
"typescript": "^4.9.5"
},
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/",
"start": "node dist/",
"build": "rollup -c",
"test": "cross-env NODE_ENV=test jest --testTimeout=60000 --coverage"
}
}