-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "article-api",
"version": "1.0.0",
"description": "API for basic article sharing",
"main": "src/index.js",
"repository": "git@github.com:enesthedev/article-api.git",
"author": "Enes Bayraktar",
"license": "MIT",
"scripts": {
"start": "tsx src/index.ts",
"watch": "tsx watch src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"devDependencies": {
"@types/node": "^18.14.6",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"prisma": "^4.11.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@apollo/server": "^4.4.1",
"@prisma/client": "^4.11.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"graphql": "^16.6.0",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"nexus": "^1.3.0",
"path": "^0.12.7",
"reflect-metadata": "^0.1.13",
"uuid": "^9.0.0"
}
}