-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 952 Bytes
/
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
{
"name": "tibia-api",
"version": "2.0.1",
"main": "index.js",
"repository": {
"url": "https://github.com/raulfdm/tibia-api"
},
"license": "MIT",
"scripts": {
"lint": "./node_modules/.bin/eslint src/",
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"deploy": "git push heroku master && heroku ps:scale web=1 && heroku open"
},
"engines": {
"node": "8.9.0"
},
"dependencies": {
"consign": "^0.1.2",
"express": "^4.14.1",
"express-graphql": "^0.6.11",
"graphql": "^0.11.7",
"jsdom": "^11.3.0",
"moment-timezone": "^0.5.14",
"request": "^2.83.0",
"tabletojson": "^0.6.0",
"winston": "^2.4.0"
},
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^21.2.1",
"nodemon": "^1.11.0"
}
}