-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1009 Bytes
/
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
{
"name": "cron-app",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc -b",
"start:prod": "npm run build && node dist/index.js",
"start": "node src",
"local": "ts-node src",
"local:watch": "nodemon src -e ts,json --exec 'npm run local'",
"test": "jest",
"pretty": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts --fix",
"format-and-lint": "npm run pretty && npm run lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.14.12",
"axios": "^1.7.3",
"dotenv-safe": "^9.1.0",
"express": "^4.19.2",
"node-cron": "^3.0.3",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"ts-node-dev": "^2.0.0",
"typeorm": "^0.3.20",
"typescript": "^5.5.4"
},
"devDependencies": {
"@types/dotenv-safe": "^8.1.6",
"@types/node-cron": "^3.0.11"
}
}