This repository has been archived by the owner on Apr 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
82 lines (82 loc) · 2.4 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
{
"name": "uojs2",
"version": "0.0.1",
"description": "An online client for the popular game Ultima Online",
"main": "dist/uojs2.js",
"engines": {
"node": ">=6"
},
"scripts": {
"proxy:debug": "node src/server -d=*",
"build:client:dev": "webpack --config=webpack",
"build:client:prod": "webpack --env.production --config=webpack",
"development:client": "webpack-dev-server --config webpack --hot --inline",
"development": "concurrently -k -c \"blue,green\" -p [{name}] -n \"proxy,dev-server\" \"yarn run proxy:debug\" \"yarn run development:client\""
},
"repository": {
"type": "git",
"url": "https://github.com/kevinhikaruevans/uojs2.git"
},
"keywords": [
"ultima",
"online",
"uojs",
"uo",
"game",
"mmorpg"
],
"author": "Kevin Evans <[email protected]>",
"contributors": [
"Aleksey Novikov <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinhikaruevans/uojs2/issues"
},
"homepage": "https://github.com/kevinhikaruevans/uojs2",
"devDependencies": {
"babel-core": "6.21.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-transform-class-properties": "6.19.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "6.20.2",
"babel-preset-latest": "6.16.0",
"babel-preset-react": "6.16.0",
"concurrently": "3.1.0",
"css-loader": "0.26.1",
"eslint": "3.12.2",
"eslint-loader": "1.6.1",
"eslint-plugin-react": "6.8.0",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "0.9.0",
"postcss-loader": "1.2.1",
"postcss-nested": "1.0.0",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.4",
"redbox-react": "1.3.3",
"redux-logger": "2.7.4",
"style-loader": "0.13.1",
"stylelint": "7.7.1",
"webpack": "2.2.0-rc.3",
"webpack-dev-server": "2.2.0-rc.0"
},
"dependencies": {
"debug": "2.6.0",
"history": "4.5.0",
"hook-redux": "0.0.4",
"minimist": "1.2.0",
"react": "15.4.1",
"react-dom": "15.4.1",
"react-redux": "5.0.1",
"react-router-async": "0.5.3",
"react-three-renderer": "3.0.2",
"redux": "3.6.0",
"redux-actions-helpers": "1.0.2",
"redux-thunk": "2.1.0",
"three": "0.83.0",
"uodatareader": "1.0.10",
"ws": "1.1.1"
}
}