This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
118 lines (118 loc) · 3.13 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
{
"name": "dcl-kernel",
"version": "6.4.2",
"license": "Apache-2.0",
"scripts": {
"start": "make watch",
"build": "make build-essentials",
"lint": "eslint . --ext .ts --fix",
"test": "make test-ci"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/dist/**",
"**/test/**"
],
"reporter": [
"html",
"text"
],
"all": true
},
"devDependencies": {
"@dcl/eslint-config": "^1.0.5-20220608210046.commit-d51d9ec",
"@dcl/posix": "^1.0.3",
"@dcl/unity-renderer": "^1.0.68557-20221221195847.commit-f743b85",
"@protobuf-ts/protoc": "^2.8.1",
"@types/chai": "^4.1.3",
"@types/events": "^1.2.0",
"@types/fs-extra": "^5.0.2",
"@types/glob": "^7.1.1",
"@types/offscreencanvas": "^2019.6.4",
"@types/sdp-transform": "^2.4.4",
"@types/semver": "^5.5.0",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.2",
"@types/tween.js": "^16.9.0",
"@types/uuid": "^3.4.5",
"chai": "^4.1.2",
"concurrently": "^4.1.2",
"cors": "^2.8.4",
"express": "^4.18.1",
"fs-extra": "^5.0.0",
"madge": "^5.0.1",
"query-string": "^7.0.1",
"redux-saga-test-plan": "^4.0.6",
"sinon": "^6.1.3",
"sinon-chai": "^3.3.0",
"titere": "^3.0.0",
"ts-proto": "^1.126.1",
"ts-protoc-gen": "^0.15.0",
"typescript": "4.6.4",
"uuid": "^3.1.0"
},
"dependencies": {
"@dcl/catalyst-peer": "^1.0.14",
"@dcl/crypto": "^3.3.1",
"@dcl/ecs-math": "^1.0.1",
"@dcl/ecs-quests": "^1.3.1",
"@dcl/feature-flags": "^1.1.0",
"@dcl/hashing": "^1.1.2",
"@dcl/kernel-interface": "^2.0.0-20210922153939.commit-017905d",
"@dcl/legacy-ecs": "^6.11.8",
"@dcl/protocol": "^1.0.0-4009547712.commit-472ea24",
"@dcl/rpc": "^1.1.1",
"@dcl/scene-runtime": "^7.0.3-20230125201152.commit-2ffd670",
"@dcl/schemas": "^6.4.2",
"@dcl/urn-resolver": "^2.0.3",
"@redux-saga/simple-saga-monitor": "^1.1.3",
"@types/mocha": "^10.0.0",
"@types/redux-logger": "^3.0.9",
"@well-known-components/pushable-channel": "^1.0.3",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"dcl-catalyst-client": "^14.0.9",
"dcl-quests-client": "^2.10.0",
"dcl-social-client": "^1.23.2",
"decentraland-ecs": "^6.0.4",
"devtools-protocol": "0.0.615714",
"estrella": "^1.4.1",
"eth-connect": "^6.0.3",
"fortmatic": "^2.2.1",
"fp-future": "^1.0.1",
"gifuct-js": "^2.0.0",
"google-protobuf": "3.20.1",
"livekit-client": "^1.5.0",
"mitt": "^3.0.0",
"mocha": "^10.1.0",
"mz-observable": "^1.0.1",
"p-queue": "^7.1.0",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.1",
"sdp-transform": "^2.14.1",
"stream-browserify": "^3.0.0",
"typesafe-actions": "^4.4.2",
"undici": "^5.13.0",
"util": "^0.12.5"
},
"bundleDependencies": [
"@dcl/unity-renderer"
],
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 2
},
"config": {
"protocVersion": "21.6"
}
}