-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "pknu-notice-back",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/GDSC-PKNU-21-22/pknu-notice-back.git",
"author": "pp449 <[email protected]>",
"license": "MIT",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --config ./.eslintrc --fix"
]
},
"scripts": {
"start": "ts-node --transpile-only -r tsconfig-paths/register src/index.ts",
"test": "jest --forceExit --detectOpenHandles",
"dev": "NODE_ENV=development node-dev src/index.ts",
"postinstall": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@notionhq/client": "2.2.5",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"mysql2": "^3.3.2",
"node-cron": "^3.0.2",
"web-push": "^3.6.4"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/mongoose-auto-increment": "^5.0.35",
"@types/morgan": "^1.9.4",
"@types/node": "^18.16.3",
"@types/node-cron": "^3.0.8",
"@types/web-push": "^3.3.2",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"express": "^4.18.2",
"husky": "8.0.3",
"jest": "^29.5.0",
"lint-staged": "13.2.2",
"morgan": "^1.10.0",
"node-dev": "^8.0.0",
"prettier": "2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4",
"typescript-transform-paths": "^3.4.6"
}
}