-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "servo",
"version": "0.0.2",
"description": "Server dummy for my tests :D",
"private": true,
"scripts": {
"start": "nodemon ./bin/www.js --exec ./node_modules/.bin/babel-node",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikfloresq/servo.git"
},
"keyword": [
"Node",
"GraphQL",
"Express",
"Notification Push"
],
"author": "Erik Flores",
"license": "MIT",
"dependencies": {
"apn": "^1.6.2",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"debug": "~2.6.0",
"express": "^4.17.1",
"express-graphql": "^0.6.4",
"firebase-admin": "^9.5.0",
"graphql": "^0.10.0",
"graphql-tools": "^0.11.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pug": "~3.0.1",
"serve-favicon": "~2.4.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"babel-eslint": "^7.0.0",
"babel-plugin-inline-import": "^2.0.1",
"babel-polyfill": "6.23.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "6.22.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.3"
}
}