forked from blairjordan/Lobster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 2.06 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
{
"name": "lobster",
"version": "0.1.0",
"descriptio": "An API for lobby, inventory and in-game economy",
"scripts": {
"dev": "nodemon ./server.js --exec ./node_modules/.bin/babel-node --presets es2015,stage-2 ",
"start": "npm run clean && npm run build && npm run copy && node ./dist/server.js",
"build": "node ./node_modules/babel-cli/bin/babel.js . -d dist --presets es2015,stage-2 --ignore spec.js,node_modules,public --copy-files",
"copy": "cp -R ./public dist",
"clean": "rm -rf dist && mkdir dist",
"serve": "node dist/server.js",
"test": "mocha --timeout 10000 --require babel-core/register --require babel-polyfill --exit",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/blairjordan/Lobster.git"
},
"keywords": [
"Node.js",
"Javascript",
"Express"
],
"author": "Blair Jordan",
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"formidable": "^1.2.1",
"gm": "^1.23.1",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"pg-promise": "^8.5.3",
"pug": "^2.0.3",
"winston": "^2.4.4",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-inline-import": "^2.0.1",
"babel-plugin-transform-async-to-module-method": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.8"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb/base",
"plugin:import/errors"
],
"rules": {
"no-use-before-define": 0,
"arrow-body-style": 0,
"dot-notation": 0,
"no-console": 0
},
"env": {
"mocha": true
}
}
}