-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "kraken",
"version": "1.0.0",
"description": "A simple boilerplate to create a tentacool service!",
"main": "index.js",
"scripts": {
"start": "npm run server",
"server": "rm -rf ./node_modules/.cache/babel-loader && nodemon --exec babel-node src/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wendelfreitas/kraken.git"
},
"keywords": [],
"author": "Wendel Freitas <wendelfreitasbranco@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/wendelfreitas/kraken/issues"
},
"homepage": "https://github.com/wendelfreitas/kraken#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-plugin-import-graphql": "^2.7.0",
"babel-plugin-root-import": "^6.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-import": "^2.17.3",
"jest": "^24.8.0"
},
"dependencies": {
"bcrypt": "^3.0.6",
"dotenv": "^6.2.0",
"graphql": "^14.3.1",
"graphql-middleware": "^3.0.2",
"graphql-subscriptions": "^1.1.0",
"graphql-tools": "^4.0.4",
"graphql-yoga": "^1.17.4",
"jsonwebtoken": "^8.5.1",
"merge-graphql-schemas": "^1.5.8",
"mongoose": "^5.5.13",
"nodemon": "^1.19.1"
}
}