-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.43 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
{
"name": "softwaretycoon",
"version": "0.0.1-alpha.5",
"main": "index.js",
"license": "MPL-2.0",
"scripts": {
"build": "rojo build -o ./build.rbxlx",
"compile": "rbxtsc --verbose",
"deploy": "mantle deploy",
"dev": "rbxtsc --verbose -w",
"extract-assets": "remodel run ./scripts/remodel/extractAssets.lua",
"linesofcode": "node ./scripts/node/linesOfCode.js",
"lint-eslint": "eslint \"src/**/*.*\"",
"lint-prettier": "prettier --check \"src/**/*.*\"",
"lint-fix": "eslint --fix \"src/**/*.*\" && prettier --write \"src/**/*.*\"",
"lint": "yarn lint-eslint && yarn lint-prettier",
"start": "concurrently --kill-others-on-fail \"yarn watch\" \"yarn serve\"",
"serve": "rojo serve",
"test": "yarn compile && yarn test-run",
"test-run": "run-in-roblox --place ./build.rbxlx --script ./out/server/testBootstrap.server.lua"
},
"devDependencies": {
"@rbxts/compiler-types": "^1.2.3-types.1",
"@rbxts/types": "^1.0.545",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"concurrently": "^6.3.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-roblox-ts": "^0.0.32",
"prettier": "^2.4.1",
"rbxts-transformer-flamework": "^1.0.0-beta.8",
"roblox-ts": "=1.2.7",
"typescript": "=4.4.4"
},
"resolutions": {
"typescript": "=4.4.4"
},
"dependencies": {
"@flamework/components": "^1.0.0-beta.5",
"@flamework/core": "^1.0.0-beta.2",
"@rbxts/bin": "^1.2.1",
"@rbxts/cmdr": "^1.8.4-ts.1",
"@rbxts/color": "^0.1.4",
"@rbxts/flipper": "^2.0.1",
"@rbxts/llama": "^1.1.0-ts2",
"@rbxts/log": "^0.5.0-beta.1",
"@rbxts/message-templates": "^0.3.2",
"@rbxts/net": "^2.1.5",
"@rbxts/object-utils": "^1.0.4",
"@rbxts/profileservice": "^1.4.1",
"@rbxts/roact": "^1.4.0-ts.2",
"@rbxts/roact-hooked": "^1.2.2",
"@rbxts/roact-rodux": "^0.2.2-ts.5",
"@rbxts/rodux": "^3.0.0-ts.3",
"@rbxts/rust-classes": "^0.11.0-beta.1",
"@rbxts/services": "^1.2.0",
"@rbxts/signal": "^1.0.3",
"@rbxts/spring": "^1.0.2",
"@rbxts/string-utils": "^1.0.3",
"@rbxts/t": "^2.2.1",
"@rbxts/testez": "^0.3.1-ts.7",
"@rbxts/validate-tree": "^2.0.1",
"rbxts-transform-debug": "^1.0.0-ts4.4",
"rbxts-transform-env": "^1.0.0-ts4.4",
"rbxts-transformer-fs": "^1.1.2",
"rbxts-transformer-t": "^1.1.4"
}
}