-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.51 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
{
"name": "42alert",
"version": "1.0.0",
"description": "📨 새로운 Agenda 이벤트를 슬랙으로 보내드려요",
"main": "index.js",
"repository": "https://github.com/nfl1ryxditimo12/42Alert",
"author": "nfl1ryxditimo12 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/winston": "^2.4.4",
"dotenv": "^10.0.0",
"ts-loader": "^9.3.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@slack/web-api": "^6.5.1",
"@types/express": "^4.17.13",
"@types/node-cron": "^3.0.0",
"@types/puppeteer": "^5.4.4",
"axios": "^0.27.2",
"cross-env": "^7.0.3",
"ejs": "^3.1.6",
"express": "^4.17.2",
"mysql2": "^2.3.3",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typeorm": "^0.2.41",
"typescript": "^4.5.4",
"webpack": "^5.72.1",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"deploy": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=2048 pm2 start build/app.js",
"start": "cross-env NODE_ENV=development nodemon --exec ts-node -r tsconfig-paths/register --files ./src/app.ts"
},
"_moduleAlias": {
"@controller/*": "./dist/controller/*",
"@repository/*": "./dist/repository/*",
"@entities/*": "./dist/entities/*",
"@modules/*": "./dist/modules/*"
}
}