-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "apollo",
"version": "1.0.0",
"description": "apollo server with graphql",
"main": "dist/index.js",
"scripts": {
"dev": "yarn clean && nodemon src/index.ts",
"start": "yarn build && node dist/index.js",
"build": "tsc -p .",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:format": "eslint src/**/*.ts --fix",
"prepare": "husky install"
},
"keywords": [],
"author": "mr-chidex",
"license": "ISC",
"dependencies": {
"@types/jest": "^28.1.6",
"apollo-server-core": "^3.10.2",
"apollo-server-express": "^3.10.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"graphql": "^16.5.0",
"morgan": "^1.10.0",
"typescript": "^4.8.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1"
},
"repository": "https://github.com/mr-chidex/Apollo-server.git",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}