-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "graphql-clean-architecture",
"version": "1.0.0",
"description": "Nodejs with Graphql and Typescript - Clean Architecture ",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "nodemon --config nodemon.json src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ammce/node-graphql-clean-architecture.git"
},
"author": "Amel Muminovic",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ammce/node-graphql-clean-architecture/issues"
},
"homepage": "https://github.com/Ammce/node-graphql-clean-architecture#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1"
},
"dependencies": {
"@graphql-tools/merge": "^6.2.13",
"@types/express": "^4.17.11",
"apollo-server-express": "^2.24.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1",
"typescript": "^4.2.4"
}
}