-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "bluecherry-api",
"version": "0.3.6",
"description": "The API for Bluecherry DVR",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --watch \"src/**\" --ext \"ts,json,yaml\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/index.ts\"",
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile"
},
"repository": {
"type": "git",
"url": "not"
},
"author": "Jahleel A. @ Bluecherry Team",
"license": "AGPL-3.0",
"dependencies": {
"@sinclair/typebox": "^0.32.31",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"log4js": "^6.9.1",
"mysql2": "^3.10.0",
"sequelize": "^6.37.3",
"sqlite3": "^5.1.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.12",
"@types/node": "20.11.5",
"@types/swagger-ui-express": "^4.1.6",
"gts": "^5.3.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "~5.4.3"
}
}