forked from MonzterDev/Roblox-TS-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "Roblox-TS-Template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"serve": "rojo serve",
"start": "npm run watch & npm run serve",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.911",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-roblox-ts": "^1.4.0",
"prettier": "^3.8.1",
"rbxts-transform-debug": "^2.2.0",
"rbxts-transformer-flamework": "^1.3.1",
"roblox-ts": "^3.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"dependencies": {
"@flamework/components": "^1.3.1",
"@flamework/core": "^1.3.1",
"@flamework/networking": "^1.3.1",
"@rbxts/cmdr": "^1.12.1",
"@rbxts/object-utils": "^1.0.4",
"@rbxts/profileservice": "^1.4.2",
"@rbxts/react": "^17.2.3",
"@rbxts/react-reflex": "^0.3.7",
"@rbxts/react-roblox": "^17.2.3",
"@rbxts/reflex": "^4.3.1",
"@rbxts/services": "^1.6.0",
"@rbxts/signal": "^1.1.1",
"@rbxts/t": "^3.2.1",
"@rbxts/testez": "^0.4.2-ts.0",
"@rbxts/ui-labs": "^2.4.2"
}
}