-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.22 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
{
"name": "puntodb",
"version": "1.0.0",
"description": "A Punto game used with database",
"main": "dist/main.js",
"scripts": {
"build": "tsc --build ./tsconfig.json --verbose --incremental",
"test": "ts-node ./src/tests/Tests.test.ts",
"start": "node ./dist/main.js",
"clean": "tsc --build ./tsconfig.json --clean && del tsconfig.tsbuildinfo",
"docs": "typedoc --entryPointStrategy expand ./src --out docs --darkHighlightTheme dark-plus --includeVersion true --excludeInternal false"
},
"author": "Naexy",
"license": "",
"packageManager": "[email protected]+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7",
"devDependencies": {
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"mongodb": "^5.9.2",
"mysql2": "^3.9.7",
"neogma": "^1.14.0",
"reflect-metadata": "^0.1.14",
"sqlite3": "^5.1.7",
"surrealdb.js": "1.0.0-beta.8",
"typeorm": "^0.3.20"
}
}