-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 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
49
50
51
52
{
"name": "the-bid-users",
"version": "0.1.0",
"description": "This is a microservice associated with the bid that handles users.",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --fix --ignore-path .gitignore --ignore-pattern '!.eslintrc.js'",
"test": "npm run lint && npm run unit",
"unit": "jest",
"coverage": " jest --coverage",
"start": "nodemon -r dotenv/config src/index.js",
"start:dev": "npm-run-all -pl start playground ",
"start:prod": "node src/index.js",
"playground": "graphql playground --port 3001"
},
"author": "bialesdaniel@gmail.com",
"license": "ISC",
"dependencies": {
"apollo-engine": "^1.1.2",
"auth0": "^2.17.0",
"graphql-iso-date": "^3.6.1",
"graphql-yoga": "^1.17.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11"
},
"devDependencies": {
"casual": "^1.6.0",
"dotenv": "^7.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-security": "^1.4.0",
"graphql": "^14.2.1",
"graphql-import": "^0.7.1",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.0"
},
"prettier": {
"semi": false,
"printWidth": 120,
"singleQuote": true
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/test",
"<rootDir>/config"
]
}
}