-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 893 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
37
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"lint": "eslint --fix src",
"typecheck": "tsc --noEmit",
"start:background": "nohup npm run start &"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/dockerode": "^3.3.23",
"cors": "^2.8.5",
"dockerode": "^4.0.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"hbs": "^4.2.0",
"helmet": "^7.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/hbs": "^4.0.4",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}