forked from d0p3t/fivem-ts-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.05 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": "fivem-ts-boilerplate",
"version": "2.1.1",
"description": "Typescript Boilerplate for FiveM",
"main": "index.js",
"repository": "https://github.com/d0p3t/fivem-ts-boilerplate",
"author": "d0p3t <[email protected]>",
"scripts": {
"build": "webpack --mode production",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"watch": "webpack --mode development --watch true"
},
"license": "MIT",
"private": false,
"dependencies": {
"@citizenfx/client": "^1.0.2792-1",
"@citizenfx/server": "^1.0.2792-1",
"@types/node": "^14.0.27"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"prettier": "^2.0.5",
"remove-files-webpack-plugin": "^1.4.3",
"ts-loader": "^8.0.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}