-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1008 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1008 Bytes
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
{
"name": "github-avatar-frame-api",
"version": "1.0.0",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "npm run build && npm start",
"dev:watch": "nodemon --exec \"npm run build && npm start\" --ext ts,json",
"build": "tsc -p tsconfig.server.json",
"build:cli": "cd cli && npm run build",
"start": "node dist/server.js",
"cli": "cd cli && npm start"
},
"dependencies": {
"aos": "^2.3.4",
"axios": "^1.12.2",
"aos":"^2.3.4",
"cors": "^2.8.5",
"express": "^4.21.2",
"sharp": "^0.34.4",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/node": "^24.7.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"all-contributors-cli": "^6.26.1",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}