-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "graphql-skeleton",
"version": "0.0.2",
"description": "",
"main": "src/server.js",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"prepare": "husky install",
"create-hook": "husky add .husky/pre-commit \"npm test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrrashidov/graphql-skeleton.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrrashidov/graphql-skeleton/issues"
},
"homepage": "https://github.com/mrrashidov/graphql-skeleton#readme",
"dependencies": {
"@apollo/server": "^4.3.0",
"@graphql-tools/merge": "^8.3.14",
"@graphql-tools/schema": "^9.0.12",
"apollo-server-core": "^3.11.1",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dataloader": "^2.1.0",
"express": "^4.18.2",
"graphql": "^16.6.0",
"graphql-subscriptions": "^2.0.0",
"graphql-upload": "^12.0.0",
"graphql-ws": "^5.11.2",
"ioredis": "^4.28.5",
"jsonwebtoken": "^8.5.1",
"knex": "^2.3.0",
"pg": "^8.8.0",
"ws": "^8.11.0",
"yup": "^0.32.11"
},
"devDependencies": {
"dotenv": "^16.0.3",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}