-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.14 KB
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
{
"name": "github-pinned-repo-api",
"version": "2.3.3",
"description": "Get GitHub pinned repository contents without using personal access token",
"main": "dist/app.js",
"scripts": {
"build": "tsc && copyfiles -u 1 src/view/**/* src/assets/**/* dist/",
"start": "node dist/server/app.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/server/app.ts",
"deploy": "npm install && npm run build"
},
"devDependencies": {
"@types/cheerio": "^0.22.31",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.13",
"@types/node": "^20.0.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"nodemon": "^3.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"cron": "^3.1.7",
"cross-fetch": "^4.0.0",
"dotenv": "^17.3.1",
"express": "^4.18.2",
"lru-cache": "^10.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
}
}