-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "SurviveArcade",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn build-elf",
"build-elf": "yarn enable-elf && rbxtsc && rojo build -o SurviveArcade.rbxl",
"build-human": "yarn enable-human && rbxtsc && rojo build -o SurviveArcadeHuman.rbxl",
"clean": "rm -rf out flamework.build SurviveArcade.rbxl SurviveArcadeHuman.rbxl",
"enable-elf": "cp project/elf.project.json default.project.json",
"enable-dev": "cp project/dev.project.json default.project.json",
"enable-human": "cp project/human.project.json default.project.json",
"lint": "yarn eslint src && yarn prettier --check src",
"sync": "yarn enable-dev && rojo serve",
"syncback-elf": "yarn enable-elf && rojo syncback --input ./SurviveArcade.rbxl 2>&1 | tee syncback.log",
"syncback-human": "yarn enable-human && rojo syncback --input ./SurviveArcadeHuman.rbxl 2>&1 | tee syncback.log",
"tarmac": "tarmac sync --target roblox",
"watch": "rbxtsc -w"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.3.0-types.0",
"@rbxts/types": "^1.0.760",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"csv2json": "^2.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-roblox-ts": "^0.0.36",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"rbxts-transform-debug": "^2.2.0",
"rbxts-transform-env": "^2.2.0",
"rbxts-transformer-flamework": "^1.1.1",
"roblox-ts": "^2.3.0-dev-3a89c93",
"typescript": "5.4.2"
},
"dependencies": {
"@flamework/components": "^1.1.1",
"@flamework/core": "^1.1.1",
"@flamework/networking": "^1.1.1",
"@rbxts/abbreviate": "^3.0.4",
"@rbxts/behavior-tree-5": "^1.0.0",
"@rbxts/cmdr": "^1.12.1",
"@rbxts/datastructures": "^1.0.12",
"@rbxts/device": "^0.1.2",
"@rbxts/fastcast": "^13.2.0-ts.2",
"@rbxts/flipper": "^2.0.1",
"@rbxts/lightning-beams": "^1.1.0-ts.2",
"@rbxts/log": "^0.6.3",
"@rbxts/matchmakingservice": "^1.0.5",
"@rbxts/object-utils": "^1.0.4",
"@rbxts/openskill": "^1.0.0",
"@rbxts/partcache": "^1.1.1",
"@rbxts/pretty-react-hooks": "^0.4.2",
"@rbxts/profileservice": "^1.4.2",
"@rbxts/raycast-hitbox": "^4.0.1-ts.0",
"@rbxts/react": "^0.3.1",
"@rbxts/react-reflex": "^0.3.4",
"@rbxts/react-roblox": "^0.3.1",
"@rbxts/reflex": "^4.3.1",
"@rbxts/ripple": "^0.8.1",
"@rbxts/services": "^1.5.4",
"@rbxts/set-timeout": "^1.1.2",
"@rbxts/simplepath": "^2.2.1-ts.2",
"@rbxts/t": "^3.1.1",
"@rbxts/testez": "0.4.2-ts.0"
}
}