forked from nfl1ryxditimo12/42Notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.36 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": "42alert",
"version": "1.0.0",
"description": "📨 새로운 Agenda 이벤트를 슬랙으로 보내드려요",
"main": "index.js",
"repository": "https://github.com/nfl1ryxditimo12/42Alert",
"author": "nfl1ryxditimo12 <nfl1ryxditimo12@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node-cron": "^3.0.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0"
},
"dependencies": {
"@slack/web-api": "^6.5.1",
"axios": "^0.24.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"mysql2": "^2.3.3",
"node-cron": "^3.0.0",
"typeorm": "^0.2.41",
"typescript": "^4.5.4"
},
"scripts": {
"serve-prod": "cross-env NODE_ENV=production --exec ts-node -r tsconfig-paths/register --files ./src/app.ts",
"serve-dev": "cross-env NODE_ENV=development nodemon --exec ts-node -r tsconfig-paths/register --files ./src/app.ts",
"start": "yarn run serve-prod",
"dev": "yarn run serve-dev"
},
"_moduleAlias": {
"@controller/*": "./dist/controller/*",
"@repository/*": "./dish/repository/*",
"@entities/*": "./dist/entities/*",
"@modules/*": "./dist/modules/*"
}
}