-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.55 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
56
57
58
59
{
"name": "dailytaks-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch:dev": "nodemon index.js",
"dev": "yarn run watch:dev",
"test": "jest --forceExit",
"test:coverage": "jest --collect-coverage",
"lint": "node ./node_modules/eslint/bin/eslint . --ignore-path .gitignore",
"eslint:github-action": "node ./node_modules/eslint/bin/eslint . --ignore-path .gitignore --max-warnings 0",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{js, ts}": [
"yarn run lint"
]
},
"keywords": [
"API",
"Backend"
],
"author": "Charles Elloit",
"license": "MIT",
"dependencies": {
"@graphql-tools/schema": "^8.3.1",
"apollo-server-express": "^3.6.3",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^16.3.0",
"graphql-middleware": "^6.1.14",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-shield": "^7.5.0",
"helmet": "^4.6.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.14",
"pg": "^8.11.3",
"redis": "^3.1.2",
"sanitize-html": "^2.4.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
}
}