-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.47 KB
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
{
"name": "rest-express",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "set NODE_ENV=development&& nodemon --exec ts-node src/index.ts",
"start": "set NODE_ENV=production&& ts-node src/index.ts",
"build": "tsc",
"swagger-autogen": "ts-node ./swagger.ts",
"codegen": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@apollo/server": "^4.3.0",
"@prisma/client": "4.6.0",
"@types/bcryptjs": "^2.4.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/passport": "^1.0.11",
"@types/passport-jwt": "^3.0.7",
"@types/swagger-ui-express": "^4.1.3",
"axios": "^1.2.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "4.18.2",
"graphql": "^16.6.0",
"graphql-scalars": "^1.20.1",
"graphql-tag": "^2.12.6",
"joi": "^17.7.0",
"jsonwebtoken": "^8.5.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"swagger-autogen": "^2.22.0",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@graphql-codegen/cli": "2.16.1",
"@graphql-codegen/introspection": "2.2.3",
"@graphql-codegen/typescript": "2.8.5",
"@graphql-codegen/typescript-resolvers": "2.7.10",
"@types/cors": "^2.8.13",
"@types/express": "4.17.14",
"@types/node": "18.11.9",
"prisma": "4.6.0",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}