-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 892 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 892 Bytes
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
{
"name": "fbrp_ts_template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"build": "esbuild client=src/client/client.ts server=src/server/server.ts --bundle --outdir=build --minify --target=es2015 --platform=node",
"dev": "nodemon",
"preinstall": "node preinstall.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@citizenfx/client": "^2.0.6591-1",
"@citizenfx/server": "^2.0.6591-1",
"@types/node": "^18.17.15",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@zerio2/qbcore.js": "^1.5.4",
"esbuild": "^0.15.6",
"eslint": "^8.39.0"
},
"dependencies": {
"@types/express": "^4.17.17",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"nodemon": "^2.0.19"
}
}