-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
60
61
62
63
64
65
66
{
"name": "user-accounts",
"version": "1.0.0",
"description": "GraphQL API, Express, Apollo Server, PostgreSQL, Prisma",
"author": "Maksim Khitrov <[email protected]>",
"license": "MIT",
"type": "module",
"keywords": [
"nodejs",
"graphql",
"api",
"express",
"apollo",
"postgresql",
"prisma"
],
"homepage": "https://github.com/KhitrovMaksim/user-accounts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/KhitrovMaksim/user-accounts.git"
},
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"lint": "eslint . && prettier -c \"**/*.js\"",
"dev": "nodemon src/index.js",
"format": "eslint . --fix && prettier --write \"**/*.js\"",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.0",
"nodemon": "^3.0.1",
"prisma": "^5.1.1",
"prisma-erd-generator-markdown": "^1.3.1"
},
"dependencies": {
"@apollo/server": "^4.9.1",
"@apollo/subgraph": "^2.4.12",
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.5.4",
"@babel/preset-env": "^7.20.2",
"@graphql-tools/merge": "9.0.0",
"@graphql-tools/schema": "10.0.0",
"@prisma/client": "^5.1.1",
"argon2": "^0.31.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"graphql": "^16.8.0",
"graphql-middleware": "^6.1.35",
"graphql-scalars": "^1.22.2",
"graphql-shield": "^7.6.5",
"graphql-tools": "^9.0.0",
"jsonwebtoken": "^9.0.1",
"prettier": "2.8.3",
"yup": "^1.2.0"
}
}