-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 3.16 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "roblox-ts-project-template",
"version": "1.0.0",
"description": "A Roblox game made with React and Roblox-TS",
"license": "MIT",
"author": "Christopher Buss <christopher.buss@pm.me> (https://github.com/christopher-buss)",
"type": "module",
"scripts": {
"assets:upload": "asphalt sync",
"postassets:upload": "eslint src/shared/assets.d.ts --fix",
"clean": "npx rimraf out/ && npx rimraf dist",
"commit": "commit",
"darklua": "darklua process out dist --verbose",
"dev:build": "rbxts-build build",
"dev:compile": "rbxts-build compile",
"dev:open": "rbxts-build open",
"dev:restart": "pnpm run dev:stop && pnpm run dev:start",
"dev:start": "rbxts-build start",
"dev:stop": "rbxts-build stop",
"dev:sync": "rbxts-build sync",
"postdev:sync": "eslint src/types/services.d.ts --fix",
"dev:watch": "rbxts-build watch",
"eslint-config": "npx @eslint/config-inspector",
"lint": "eslint --max-warnings 0 .",
"prepare": "node .husky/install.js",
"prod:build": "npm run clean && NODE_ENV=production && npx rbxtsc --verbose && npm run darklua",
"prod:sync": "rojo serve ./build.project.json"
},
"lint-staged": {
"*": "eslint --fix --max-warnings 0 --no-warn-ignored"
},
"dependencies": {
"@flamework/components": "1.2.3",
"@flamework/core": "1.2.3",
"@flamework/networking": "1.2.3",
"@rbxts/flamework-binary-serializer": "0.6.0",
"@rbxts/janitor": "1.17.0-ts.1",
"@rbxts/lapis": "0.3.6",
"@rbxts/lapis-mockdatastore": "0.3.6",
"@rbxts/log": "0.6.3",
"@rbxts/luau-polyfill": "1.1.2",
"@rbxts/message-templates": "0.3.2",
"@rbxts/player-module-types": "0.1.0",
"@rbxts/pretty-react-hooks": "0.6.1",
"@rbxts/promise-child": "1.2.1",
"@rbxts/rbx-better-signal": "2.1.0",
"@rbxts/rbx-debug": "1.0.2-ts.0",
"@rbxts/react": "17.2.1",
"@rbxts/react-reflex": "0.3.4",
"@rbxts/react-roblox": "17.2.1",
"@rbxts/reflex": "4.3.1",
"@rbxts/remap": "0.2.2",
"@rbxts/ripple": "0.9.1",
"@rbxts/services": "1.5.5",
"@rbxts/sift": "0.0.9",
"@rbxts/t": "3.1.1",
"@rbxts/ui-labs": "2.3.0",
"@rbxts/validate-tree": "2.0.2",
"rbxts-transform-debug": "2.2.0",
"rbxts-transform-env": "github:roblox-aurora/rbxts-transform-env"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/prompt-cli": "19.5.0",
"@commitlint/types": "19.5.0",
"@eslint-react/eslint-plugin": "1.14.2",
"@eslint/config-inspector": "0.5.5",
"@isentinel/eslint-config": "1.0.0-beta.1",
"@rbxts/compiler-types": "3.0.0-types.0",
"@rbxts/types": "1.0.813",
"eslint": "9.21.0",
"eslint-plugin-react-roblox-hooks": "5.1.0-rbx.1",
"git-pull-run": "1.4.0",
"husky": "9.1.6",
"jiti": "2.3.3",
"lint-staged": "15.2.10",
"rbxts-build": "2.4.0",
"rbxts-transformer-flamework": "1.2.3",
"rimraf": "6.0.1",
"roblox-ts": "3.0.0",
"typescript": "5.5.3"
},
"packageManager": "pnpm@9.12.2",
"pnpm": {
"patchedDependencies": {
"rbxts-transform-env@2.2.0": "patches/rbxts-transform-env@2.2.0.patch"
}
},
"rbxts-build": {
"syncLocation": "src/types/services.d.ts",
"names": {
"build": "dev:build",
"compile": "dev:compile",
"open": "dev:open",
"watch": "dev:watch"
}
}
}