-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 997 Bytes
/
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
{
"name": "template",
"version": "1.0.0",
"description": "fivem ts template",
"main": "index.js",
"author": "nns",
"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/mysql": "^2.15.18",
"@types/node": "^14.0.27",
"fivem-js": "^1.5.1",
"mysql": "^2.18.1"
},
"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"
}
}