-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.14 KB
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
{
"name": "auth_service",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "nodemon ./src/index.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest --forceExit --coverage --verbose",
"test:watch": "npm run test -- --watchAll",
"build": "tsc -p ./",
"format": "prettier --write"
},
"lint-staged": {
"**/*.+(js|ts)": [
"prettier --write",
"eslint src/ --fix",
"jest --findRelatedTests"
]
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.7",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"dependencies": {
"@apollo/federation": "^0.16.2",
"apollo-server-express": "^2.14.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.0.0"
}
}