-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.84 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
{
"name": "poc",
"version": "0.2.0",
"description": "This is a proof of concept for an Ultima Online server written in Node.js",
"private": true,
"homepage": "https://github.com/gokaygurcan",
"author": {
"name": "Gökay Gürcan",
"email": "[email protected]",
"url": "https://github.com/gokaygurcan"
},
"contributors": [
{
"name": "Gökay Gürcan",
"email": "[email protected]",
"url": "https://github.com/gokaygurcan"
}
],
"license": "MIT",
"repository": "gokaygurcan/poc",
"scripts": {
"postinstall": "flow-typed install",
"start": "node --zero-fill-buffers -r @babel/register --inspect index.js",
"test": "node --zero-fill-buffers -r @babel/register test.js",
"dev": "nodemon",
"razor": "cross-env RAZOR=true nodemon",
"flow": "flow focus-check --pretty"
},
"dependencies": {
"hexy": "^0.3.0",
"semver": "^5.6.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-syntax-class-properties": "^7.0.0",
"@babel/plugin-syntax-flow": "^7.0.0",
"@babel/plugin-syntax-optional-chaining": "^7.0.0",
"@babel/plugin-transform-flow-comments": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"cross-env": "^5.2.0",
"flow-bin": "^0.91.0",
"flow-typed": "^2.5.1",
"nodemon": "^1.18.6"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"paths": {
"server": "./server",
"sdk": "./sdk",
"scripts": "./scripts",
"root": "./"
}
}