This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
116 lines (116 loc) · 3.3 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
{
"name": "playground",
"version": "1.0.0",
"license": "BSD-3-Clause",
"scripts": {
"build": "rm -rf ./bin && yarn build:client && yarn build:server",
"build:client": "webpack --config webpack.client.js",
"build:server": "webpack --config webpack.server.js",
"commit": "yarn lint && git-cz",
"lint": "prettier --write src/**/*.ts && eslint --fix src/**/*.ts",
"start": "webpack --config webpack.dev.js --watch --info-verbosity none",
"watch:client": "webpack --config webpack.client.js --watch",
"watch:server": "webpack --config webpack.server.js --watch"
},
"config": {
"commitizen": {
"path": "cz-gitmoji"
}
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 140,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": true,
"vueIndentScriptAndStyle": false
},
"dependencies": {
"@geckos.io/client": "^1.7.0",
"@geckos.io/server": "^1.7.0",
"@geckos.io/snapshot-interpolation": "^1.0.1",
"@msgpack/msgpack": "^2.2.0",
"ammojs-typed": "^1.0.6",
"cannon-es": "^0.15.1",
"clipboard-polyfill": "^3.0.1",
"dat.gui": "^0.7.7",
"dog-names": "^2.0.0",
"git-revision-webpack-plugin": "^3.0.6",
"glslify-loader": "^2.0.0",
"hammerjs": "^2.0.8",
"howler": "^2.2.0",
"isosurface": "^1.0.0",
"json-diff": "^0.5.4",
"jsonwebtoken": "^8.5.1",
"jsxstyle": "^2.4.0",
"load-bmfont": "^1.4.1",
"matter-js": "^0.14.2",
"node-emoji": "^1.10.0",
"open-simplex-noise": "^2.4.0-pre4",
"pixi-particles": "^4.3.0",
"pixi-spine": "^2.1.10",
"pixi.js": "^5.3.3",
"poisson-disk-sampling": "^2.2.2",
"poly-decomp": "^0.3.0",
"preact": "^10.5.4",
"query-string": "^6.13.5",
"raw-loader": "^4.0.1",
"sat": "^0.8.0",
"seedrandom": "^3.0.5",
"shortid": "^2.2.15",
"three": "^0.125.2",
"three-bmfont-text": "^3.0.1",
"tick-knock": "https://github.com/Milkshake-Inc/tick-knock.git",
"tweakpane": "^1.5.5",
"typed-signals": "^2.1.0",
"uWebSockets.js": "uNetworking/uWebSockets.js#v18.6.0",
"uuidv4": "^6.2.4",
"webfontloader": "^1.6.28",
"yargs": "^16.0.3"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@types/dat.gui": "^0.7.5",
"@types/hammerjs": "^2.0.36",
"@types/howler": "^2.2.1",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/matter-js": "^0.14.5",
"@types/sat": "^0.0.31",
"@types/seedrandom": "^2.4.28",
"@types/shortid": "^0.0.29",
"@types/webfontloader": "^1.6.32",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"babel-loader": "^8.1.0",
"chalk": "^4.1.0",
"commitizen": "^4.2.1",
"copy-webpack-plugin": "^6.2.0",
"cz-gitmoji": "^0.0.7",
"eslint": "^7.10.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.5.2",
"prettier": "^2.1.2",
"run-node-webpack-plugin": "^1.3.0",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4",
"webpack-node-externals": "^2.5.2",
"webpack-plugin-serve": "^1.1.0",
"webpackbar": "^4.0.0"
}
}