-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.45 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
{
"name": "rocket-order-bot",
"version": "1.7.3",
"main": "./index.js",
"scripts": {
"postinstall": "npm run build",
"build": "node ./scripts/build.js",
"lint": "./node_modules/.bin/eslint --report-unused-disable-directives .",
"nodemon": "./node_modules/nodemon/bin/nodemon.js --inspect=0.0.0.0 --ignore tests/ index.js",
"postbenchmark": "kill -9 `cat storage/temp/run.pid`; rm -f storage/temp/run.pid",
"prebenchmark": "nohup node index.js > /dev/null 2>&1 & echo > storage/temp/run.pid; sleep 6",
"prestart": "node ./scripts/pre.js",
"pretest": "node ./scripts/pre.js",
"prettier": "prettier --write 'src/**/*.js'",
"start": "node index.js",
"test": "./node_modules/.bin/mocha tests/*/*.js --reporter mochawesome --reporter-options reportDir=tests/report,reportFilename=output --exit",
"watch": "node ./scripts/watch.js"
},
"dependencies": {
"async": "^2.6.1",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"commander": "^2.19.0",
"config": "^2.0.1",
"express": "^4.16.3",
"node-schedule": "^1.3.0",
"persian-date": "^1.0.5",
"request-promise": "^4.2.2",
"sequelize": "^4.42.0",
"sqlite": "^3.0.0",
"sqlite3": "^4.0.6",
"uuid": "^3.3.2",
"winston": "^3.1.0",
"xlsx": "^0.14.0",
"xlsx-populate": "^1.19.0"
},
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.0",
"@babel/polyfill": "7.0.0",
"@babel/register": "7.0.0",
"babel-eslint": "9.0.0",
"chai": "^4.1.2",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-markdown": "^1.0.0-beta.8",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"faker": "^4.1.0",
"flow-bin": "^0.80.0",
"mocha": "^5.2.0",
"mocha-logger": "^1.0.6",
"mochawesome": "^3.0.3",
"nodemon": "^1.18.3",
"nyc": "^13.0.1",
"prettier": "^1.14.2",
"sane": "^3.0.0"
},
"engines": {
"node": "~=8.12.0"
},
"os": [
"linux"
],
"author": "[email protected]",
"description": "rocket chat order bot for take order",
"repository": {
"type": "git",
"url": "git://github.com/poyaz/rocket-order-bot.git"
},
"license": "MIT"
}