-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "grapqhl-jwt-foundation",
"version": "1.0.0",
"description": "Graphql client and server examples with JWT token based authentication",
"main": "index.js",
"dependencies": {
"apollo-server-express": "^2.2.2",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.2",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-routes-mapper": "^1.1.0",
"graphql": "^14.0.2",
"helmet": "^3.15.0",
"jsonwebtoken": "^8.4.0",
"lodash.merge": "^4.6.1",
"mysql2": "^1.6.4",
"sequelize": "^4.41.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"fs-extra": "^7.0.1",
"husky": "^1.2.0",
"jest": "^23.6.0",
"nodemon": "^1.18.6",
"supertest": "^3.3.0",
"yargs": "^12.0.5"
},
"scripts": {
"project": "node ./scripts/index.js",
"dev": "cross-env NODE_ENV=development node ./api/api.js",
"lint": "eslint ./api/. ./config/. ./test/.",
"start": "npm run nodemon",
"nodemon": "nodemon --exec npm run dev",
"production": "cross-env NODE_ENV=production node ./api/api.js"
},
"author": "Amaro Mariño",
"license": "MIT"
}