-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "omp-server",
"version": "1.0.0",
"private": true,
"description": "A very simple omp server template that uses the samp-node plugin and the @infernus/core library.",
"keywords": [
"sa-mp",
"sa:mp",
"open.mp",
"omp",
"gamemode",
"samp-node"
],
"homepage": "https://github.com/dockfries/infernus-starter#readme",
"bugs": {
"url": "https://github.com/dockfries/infernus-starter/issues"
},
"license": "MIT",
"author": "dockfries",
"scripts": {
"serve": "pnpm exec ./omp-server",
"dev": "npm-run-all -p -r -l dev:server dev:watch",
"dev:watch": "cross-env NODE_ENV=development rslib build -w",
"dev:server": "nodemon -x \"pnpm serve\" -I -w dist/bundle.js",
"build": "cross-env NODE_ENV=production rslib build",
"lint": "eslint --fix",
"prepare": "husky"
},
"dependencies": {
"@infernus/core": "^0.11.9",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"pino-roll": "^3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@rslib/core": "^0.5.4",
"@sa-mp/node": "^0.2.0",
"@types/node": "^22.13.10",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}