-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 875 Bytes
/
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
{
"name": "copilot-usage-saver",
"version": "1.0.0",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/api/server.js",
"dev": "nodemon dist/api/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"escape-html": "^1.0.3",
"express": "^4.21.1",
"mysql2": "^3.11.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/cors": "^2.8.17",
"@types/escape-html": "^1.0.4",
"@types/express": "^5.0.0",
"@types/mysql": "^2.15.26",
"@types/node": "^22.8.1",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}