-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "ku-notice-fetcher",
"version": "1.0.0",
"main": "src/index.js",
"author": " ",
"license": "MIT",
"scripts": {
"tsnode": "ts-node -r tsconfig-paths/register ./src ./src/index.ts",
"prebuild": "rm -rf dist",
"build": "tsc -p . && tsc-alias -p tsconfig.json",
"start": "cross-env NODE_ENV=production node dist/src/index.js",
"dev": "npx pm2 start ts-node -- -P ./tsconfig.json -r tsconfig-paths/register ./src ./src/index.ts --watch"
},
"dependencies": {
"axios": "^0.27.2",
"cross-env": "^7.0.3",
"domhandler": "^5.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"htmlparser2": "^8.0.1",
"mysql": "^2.18.1",
"node-schedule": "^2.1.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/domhandler": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/htmlparser2": "^3.10.3",
"@types/mysql": "^2.15.21",
"@types/node-schedule": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.1.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
}
}