-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 981 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"engines": {
"node": "18.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.ts",
"build": "tsc && docker build --platform linux/amd64 . -t=lehdev-api && docker save lehdev-api > lehdev-api.tar",
"beta-build": "tsc && docker build --platform linux/amd64 . -t=lehdev-api-beta && docker save lehdev-api-beta > lehdev-api-beta.tar"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/memory-cache": "^0.2.5",
"@types/uuid": "^9.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"mariadb": "^3.2.2",
"memory-cache": "^0.2.0",
"uuid": "^9.0.1"
}
}