-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "bab",
"version": "1.0.0",
"description": "Byond Authentication Bridge",
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"nodemon": "NODE_OPTIONS=\"--loader ts-node/esm\" npx nodemon src/index.ts",
"start": "NODE_OPTIONS=\"--loader ts-node/esm\" node src/index.ts",
"devUpdateDb": "npx prisma format && npx prisma db push && npx prisma generate",
"generateDbClient": "npx prisma generate"
},
"keywords": [],
"author": "alexkar598",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alexkar598/bab.git"
},
"bugs": {
"url": "https://github.com/alexkar598/bab/issues"
},
"homepage": "https://github.com/alexkar598/bab#readme",
"dependencies": {
"@prisma/client": "^3.6.0",
"chalk": "^5.0.0",
"cls-rtracer": "^2.6.0",
"config": "^3.3.6",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"express-winston": "^4.2.0",
"jose": "^4.3.7",
"nodemon": "^2.0.15",
"prettier": "2.5.0",
"printable-characters": "^1.0.42",
"prisma": "^3.6.0",
"string-to-color": "^2.2.2",
"table": "^6.7.5",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@types/config": "^0.0.40",
"@types/esm": "^3.2.0",
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@alexkar598/bab-hub": "^1.3.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"nodemonConfig": {
"delay": 3,
"watch": [
"src/",
"config/",
"types/",
"node_modules/.prisma"
],
"ext": "json,ts,js,prisma"
}
}