-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.89 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
{
"name": "bccdrop-server",
"version": "0.2.1",
"description": "bccdrop <irene>, back end server powered by graphql for bccdrop",
"scripts": {
"start": "babel-node ./server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"keywords": [
"Node.js",
"Javascript",
"GraphQL",
"Express",
"Apollo",
"Meteor"
],
"author": "Agastya Darma Laksana <[email protected]>",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^1.0.2",
"asyncawait": "^1.0.6",
"axios": "^0.16.2",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.0-beta.6",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-node6": "^11.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "6.5.0",
"bcrypt": "^1.0.3",
"body-parser": "^1.17.2",
"compression": "^1.7.0",
"cors": "^2.8.4",
"express": "^4.13.4",
"express-graphql": "^0.6.7",
"faker": "^4.1.0",
"form-data": "^2.3.1",
"graphql-tools": "^1.0.0",
"jsonwebtoken": "^7.4.3",
"lodash": "^4.17.4",
"mime": "^1.4.0",
"multer": "^1.3.0",
"mysql": "^2.14.1",
"mysql2": "^1.4.0",
"path": "^0.12.7",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"sequelize": "^4.4.2",
"slugify": "^1.2.1"
},
"devDependencies": {
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-import": "^1.1.0",
"eslint-plugin-react": "^4.2.3",
"graphql": "^0.10.5",
"nodemon": "^1.9.1"
},
"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
}
}
}