This repository has been archived by the owner on Dec 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.56 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
{
"name": "GH-Notify",
"description": "",
"version": "1.0.2",
"main": "dist/main",
"typings": "dist/main",
"scripts": {
"start": "node dist/main.js",
"install:server": "yarn install",
"install:client": "cd src/client && yarn install && cd ../../ && pwd",
"devStart": "nodemon src/main.ts",
"build:client": "cd src/client && yarn build && cd ../../ && pwd",
"build:server": "tsc && cp -r src/views dist/views",
"build": "yarn install:client && yarn build:client && yarn build:server",
"format-code": "npx prettier --write .",
"check-format": "npx prettier --check ."
},
"repository": "https://github.com/Muhammed-Rahif/GH-Notify.git",
"author": "Muhammed Rahif <[email protected]>",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^18.12.0",
"@types/jsonwebtoken": "^8.5.6",
"axios": "^0.24.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.5.1",
"express-validator": "^6.13.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.12",
"morgan": "^1.10.0",
"telegraf": "^4.4.2",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"ts-node": "^10.4.0"
},
"engines": {
"node": "16.13.*",
"yarn": "1.22.17"
}
}