-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
119 lines (119 loc) · 2.9 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "test-scenes",
"description": "My new Decentraland project",
"version": "1.0.0",
"dependencies": {
"@dcl-sdk/utils": "latest",
"@dcl/js-runtime": "latest",
"@dcl/sdk": "latest",
"glob": "^9.3.4",
"prettier": "^2.8.8",
"syncpack": "^9.8.4"
},
"prettier": {
"trailingComma": "none",
"singleQuote": true,
"printWidth": 120,
"semi": false
},
"private": true,
"scripts": {
"build": "sdk-commands build --skip-install",
"export-static": "sdk-commands export-static",
"format": "./node_modules/.bin/prettier '**/*.ts' -w",
"lint": "./node_modules/.bin/prettier '**/*.ts' --check",
"reinstall-next": "./build-all.sh",
"show-scene-parcels": "node scripts/showSceneParcels.js",
"start": "sdk-commands start",
"sync": "syncpack format --config .syncpackrc.json --source \"*/package.json\" --source package.json",
"test": "syncpack list-mismatches --config .syncpackrc.json --source \"*/package.json\" --source package.json",
"update-parcels": "node scripts/checkParcelsCollision.js"
},
"workspaces": [
"BasicInteractions",
"Block-Fountain",
"Block-dog",
"BouncerUI",
"Cube",
"Dance-floor",
"Editor-actions",
"Events-API-Board",
"Gnark",
"Hummingbirds",
"Hypno-wheels",
"Jukebox",
"Laser-ray-Casting",
"NFT-Museum",
"Party-Time",
"Pixel-Canvas-API",
"Portal-Puzzle",
"Puffer",
"Random-noise-movement",
"Shark-animation",
"Shooting-Range-Advanced",
"Shooting-range",
"Show-Manager-Example",
"Simple-NFT",
"Simple-NPC",
"Smart_Items_Pirate_Island",
"Smoke",
"Splat-Attack",
"Swimming-Shark",
"Template",
"Testing-3d-models",
"UiCanvasInformation",
"Wearables-scanner",
"Weather-Simulation",
"Zombie-shooter",
"advanced-avatar-swap",
"atari-arcade-cabinets",
"auto-dance",
"avatar-animations",
"avatar-swap",
"beer-dispenser",
"bird-field",
"block-portable-experiences",
"boids",
"cannon-car-example-scene",
"cannon-example-scene",
"clap-meter",
"coconut-shy",
"coin-pickup",
"cube-wave-16x16",
"cube-wave-32x32",
"droid-scene",
"enemy-spawner",
"grab-object-advance",
"grab-objects",
"guest-book-api",
"inflatable-punch-bag",
"item-pickup",
"land-flipper",
"lazy-loading",
"leader-board",
"light-bounce-puzzle",
"media-streaming",
"mirror-puzzle",
"moving-platforms",
"open-door",
"piano-floor",
"power-cube",
"push-box-puzzle",
"reward-claim",
"rocket-board",
"rotating-platforms",
"simple-giveaway-scene",
"sliding-door",
"switchable-platforms",
"testing-gallery",
"tin-can-alley",
"translocator",
"ui-animations",
"ui-spritesheet",
"uv-map",
"validate-player-authenticity",
"video-streaming",
"zenquencer",
"zombie-attack"
]
}