-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.67 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage '.spec.js'",
"start": "nodemon --exec babel-node src/index.js",
"check-lint": "eslint --ext .js --ignore-path .gitignore .",
"lint": "eslint --fix --ext .js --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/panelinhadees/server.git"
},
"author": "Jadson Luan <[email protected]>;Fanny Vieira<[email protected]>;Lucas Medeiros<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/panelinhadees/server/issues"
},
"homepage": "https://github.com/panelinhadees/server#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"apollo-server-testing": "^2.5.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"graphql-tag": "^2.10.1",
"jest": "^24.8.0",
"nodemon": "^1.18.11",
"prettier": "^1.17.0"
},
"dependencies": {
"apollo-server": "^2.4.8",
"apollo-server-express": "^2.4.8",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"graphql": "^14.2.1",
"graphql-iso-date": "^3.6.1",
"node-fetch": "^2.5.0",
"querystring": "^0.2.0",
"ramda": "^0.26.1",
"request": "^2.88.0"
}
}