-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.52 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": "rest-api",
"version": "1.0.0",
"description": "Node JS REST API for a TODO App with User Authentication",
"main": "src/index.js",
"repository": "[email protected]:7yp0/rest-api.git",
"author": "Michael Lückgen",
"license": "UNLICENSED",
"scripts": {
"build": "./node_modules/.bin/babel ./src -d ./dist",
"start": "./node_modules/.bin/nodemon --require dotenv/config --require babel-register ./src/index.js",
"start-production": "node ./dist/index.js",
"lint": "./node_modules/.bin/eslint ./src",
"flow": "./node_modules/.bin/flow"
},
"dependencies": {
"apollo-server-express": "^1.3.6",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"es6-error": "^4.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"express": "^4.16.3",
"express-promise-router": "^3.0.2",
"flow-bin": "^0.74.0",
"graphql": "^0.13.2",
"graphql-custom-types": "^1.4.0",
"graphql-tools": "^3.0.2",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.1.6",
"morgan": "^1.9.0",
"nodemon": "^1.17.5",
"prettier": "^1.13.5",
"prettier-eslint": "^8.8.1"
}
}