-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "legend-of-adventure",
"version": "1.0.0",
"description": "A procedurally generated MMO",
"main": "index.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"dev:client": "webpack --watch --config webpack.client.config.js --mode development",
"start:server": "nodemon --stack-trace-limit=1000 dist/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattbasta/Legend-of-Adventure.git"
},
"author": "Matt Basta <me@mattbasta.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattbasta/Legend-of-Adventure/issues"
},
"homepage": "https://github.com/mattbasta/Legend-of-Adventure#readme",
"dependencies": {
"buzz": "^1.2.1",
"crc32": "^0.2.2",
"express": "^4.14.0",
"rng": "^0.2.2",
"websocket": "^1.0.23",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/ws": "^8.5.3",
"css-loader": "^6.7.1",
"jest": "^28.0.0",
"nodemon": "^2.0.15",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
}
}