forked from kevinhikaruevans/uojs2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.56 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
{
"name": "uojs2",
"version": "0.0.1",
"description": "An online client for the popular game Ultima Online",
"main": "dist/uojs2.js",
"scripts": {
"test": "gulp",
"lint": "gulp lint",
"test-browser": "gulp test-browser",
"watch": "gulp watch",
"build": "gulp build",
"coverage": "gulp coverage",
"start": "node dist/server/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kevinhikaruevans/uojs2.git"
},
"keywords": [
"ultima",
"online",
"uojs",
"uo",
"game",
"mmorpg"
],
"author": "Kevin Evans <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinhikaruevans/uojs2/issues"
},
"homepage": "https://github.com/kevinhikaruevans/uojs2",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.3.26",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.0",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.3.13",
"chai": "^3.4.1",
"del": "^2.2.0",
"eslint": "^3.3.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^6.1.2",
"event-stream": "^3.3.4",
"glob": "^7.0.3",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-filter": "^4.0.0",
"gulp-istanbul": "^1.1.1",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.1.0",
"gulp-mocha": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.1",
"happypack": "^2.2.1",
"isparta": "^4.0.0",
"json-loader": "^0.5.3",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.15.1",
"webpack-stream": "^3.1.0",
"websockify": "^0.7.1"
},
"babelBoilerplateOptions": {
"entryFileName": "uojs2.js",
"mainVarName": "uojs"
},
"dependencies": {
"immutability-helper": "^2.0.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"react-three-renderer": "^2.3.1",
"redux": "^3.5.2",
"redux-actions": "^0.11.0",
"redux-thunk": "^2.1.0",
"three": "0.79.0",
"websockify": "^0.7.1"
}
}