-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.9 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
{
"name": "l2s2Server",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:marudor/l2s2Server.git",
"license": "MIT",
"scripts": {
"watch": "babel src --out-dir lib --watch --copy-files --source-maps",
"build": "babel src --out-dir lib --copy-files",
"dev": "BLUEBIRD_WARNINGS=0 BLUEBIRD_LONG_STACK_TRACES=1 nodemon --watch lib --exec 'node lib/index.js'",
"database": "node lib/init/createDatabase.js"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-plugin-module-require": "^1.4.4",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-syntax-trailing-function-commas": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-plugin-transform-remove-console": "^6.8.0",
"babel-plugin-transform-remove-debugger": "^6.8.0",
"eslint": "^3.12.2",
"eslint-config-marudor": "^4.0.0",
"eslint-plugin-header": "^0.1.0",
"flow-bin": "^0.37.4",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.15.3",
"babel-polyfill": "^6.16.0",
"bcrypt": "^1.0.1",
"bluebird": "^3.4.7",
"bookshelf": "^0.10.2",
"engine.io": "^1.8.2",
"immutable": "^3.8.1",
"knex": "^0.12.6",
"koa": "^2.0.0-alpha.7",
"koa-bodyparser": "^3.2.0",
"koa-router": "^7.0.1",
"lodash": "^4.17.3",
"moment": "^2.17.1",
"nodemailer": "^2.6.4",
"nodemailer-sparkpost-transport": "^1.1.0",
"pg": "^6.1.2",
"primus": "^6.0.7",
"primus-emit": "^1.0.0",
"primus-rooms": "^3.4.1",
"redis": "^2.6.3",
"redis-sessions": "^1.1.0",
"uuid": "^3.0.0"
}
}