-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.01 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
{
"name": "fun-jd",
"version": "0.0.1",
"description": "Gomoku Brain Judge Daemon",
"private": true,
"license": "MIT",
"scripts": {
"jd:compile": "node .dist/jd.js --role compile",
"jd:match": "node .dist/jd.js --role match",
"jd:match:affinity": "start /affinity 1 node .dist/jd.js --role match",
"build": "gulp clean && gulp jd",
"watch:compile": "gulp clean && gulp --role compile",
"watch:match": "gulp clean && gulp --role match",
"pm2:start": "pm2 start pm2.yaml",
"pm2:stop": "pm2 stop pm2.yaml"
},
"dependencies": {
"app-module-path": "^2.2.0",
"async-cache": "^1.1.0",
"babel-runtime": "^6.26.0",
"bluebird": "^3.5.1",
"chalk": "^2.3.0",
"child-process-promise": "^2.2.1",
"dargs": "^5.1.0",
"dg-error-factory": "^1.0.2",
"dg-framework": "^2.0.2",
"es6-error": "^4.1.1",
"eventemitter2": "^5.0.1",
"fs-promise": "^2.0.3",
"iconv-lite": "^0.4.19",
"jschardet": "^1.6.0",
"lodash": "^4.17.4",
"lzma-native": "^3.0.4",
"moment": "^2.20.1",
"rascal": "breeswish/rascal#promisify-friendly",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"shell-quote": "^1.6.1",
"source-map-support": "^0.5.2",
"string-format": "^0.5.0",
"uuid": "^3.2.1",
"winston": "^2.4.0",
"yargs": "^10.1.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"del": "^3.0.0",
"eslint": "^4.16.0",
"eslint-plugin-babel": "^4.1.2",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-eslint": "^4.0.1",
"gulp-file-cache": "0.0.1",
"gulp-nodemon": "^2.2.1",
"gulp-plumber": "^1.2.0",
"gulp-sourcemaps": "^2.6.4"
},
"babel": {
"presets": [
"env",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-decorators-legacy"
]
}
}