-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.56 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.56 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
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
120
121
122
123
{
"name": "universe",
"version": "0.2.0",
"description": "",
"private": true,
"main": "index.js",
"workspaces": [
"framework",
"framework/packages/*"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"build/**/*.js\"",
"lint": "eslint ./src --fix",
"inspect": "node --inspect ./lib/server/bootstrap",
"start:server": "gulp watch-server",
"start:client": "gulp watch-client",
"build:server": "gulp server",
"build:client": "gulp client",
"build:version": "node ./build/get-build-version",
"build:framework": "yarn workspace @uni.js/monorepo run build",
"prepare": "husky install",
"test": "jest src"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@pixi/tilemap": "^3.2.1",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@uni.js/client": "^0.1.0",
"@uni.js/event": "^0.1.0",
"@uni.js/html-input": "^0.1.0",
"@uni.js/prediction": "^0.1.0",
"@uni.js/server": "^0.1.0",
"@uni.js/texture": "^0.1.0",
"@uni.js/texture-webpack-loader": "^0.1.0",
"@uni.js/ui": "^0.1.0",
"@uni.js/utils": "^0.1.0",
"@uni.js/viewport": "^0.1.0",
"buffer": "^6.0.3",
"chalk": "^4.1.2",
"classnames": "^2.3.1",
"color": "^3.1.3",
"crypto-js": "^4.0.0",
"curve-interpolator": "^2.0.8",
"dotenv": "^10.0.0",
"dotenv-webpack": "^7.0.3",
"eventemitter2": "^6.4.4",
"gulp-cached": "^1.1.1",
"gulp-debug": "^4.0.0",
"gulp-remember": "^1.0.1",
"inversify": "^5.1.1",
"jest": "^28.1.3",
"keyboardjs": "^2.6.4",
"leveldown": "^6.0.0",
"levelup": "^5.0.0",
"loglevel": "^1.8.0",
"loglevel-plugin-prefix": "^0.8.4",
"memfs": "^3.2.2",
"path-browserify": "^1.0.1",
"pixi.js": "^6.0.4",
"pupa": "^2.1.1",
"randombytes": "^2.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reflect-metadata": "^0.1.13",
"replace-string": "3.1.0",
"sat": "^0.9.0",
"seedrandom": "^3.0.5",
"simplex-noise": "^2.4.0",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2",
"socket.io-msgpack-parser": "^3.0.1",
"threads": "^1.6.5",
"tiny-worker": "^2.3.0",
"webpack-stream": "^6.1.2"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/crypto-js": "^4.0.1",
"@types/jest": "^28.1.5",
"@types/keyboardjs": "^2.5.0",
"@types/leveldown": "^4.0.2",
"@types/levelup": "^4.3.1",
"@types/node": "^16.10.5",
"@types/pixi.js": "^5.0.0",
"@types/randombytes": "^2.0.0",
"@types/reflect-metadata": "^0.1.0",
"@types/sat": "^0.0.31",
"@types/seedrandom": "^3.0.2",
"@types/three": "^0.128.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@webpack-cli/generators": "^2.1.0",
"copy-webpack-plugin": "^9.0.0",
"css-loader": "^6.2.0",
"dayjs": "^1.10.7",
"eslint": "^7.32.0",
"gulp": "^4.0.2",
"gulp-live-server": "^0.0.31",
"gulp-typescript": "^6.0.0-alpha.1",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.2",
"jest-extended": "^3.0.1",
"js-string-escape": "^1.0.1",
"meow": "7.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.2",
"serve": "^11.3.2",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.2.4",
"threads-plugin": "^1.4.0",
"through2": "^4.0.2",
"ts-jest": "^28.0.6",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.0.0"
}
}