-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.14 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.14 KB
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
{
"name": "pack-m",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn webpack build",
"build:nc": "yarn webpack build --env no-client",
"build:ns": "yarn webpack build --env no-server",
"dev": "yarn webpack watch --mode=development",
"dev:nc": "yarn webpack watch --env no-client --mode=development",
"dev:ns": "yarn webpack watch --env no-server --mode=development",
"dev:nd": "yarn webpack watch --env no-shared --mode=development",
"dev:nsd": "yarn webpack watch --env no-server --env no-shared --mode=development",
"dev:ncd": "yarn webpack watch --env no-client --env no-shared --mode=development",
"dev:ncs": "yarn webpack watch --env no-client --env no-server --mode=development"
},
"dependencies": {
"@citizenfx/client": "^2.0.4736-1",
"@citizenfx/server": "^2.0.4748-1",
"fivem-js": "^1.5.2",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"wasm_exec-ts": "^1.0.20",
"webpack": "^5.57.1"
},
"devDependencies": {
"@types/node": "^16.10.2"
}
}