-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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": "gitlab-file-watcher",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier --config .prettierrc --write src/**/*.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"start:dev": "npx nodemon",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.3",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/node-schedule": "^2.1.0",
"@types/nodemailer": "^6.4.8",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1"
}
}