-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "insta-clone-api",
"version": "1.0.0",
"description": "Insta clone GraphQL API",
"main": "app.js",
"author": "Kevin Raleie - kkevraleie@gmail.com",
"license": "MIT",
"private": false,
"scripts": {
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/app.ts",
"start": "node dist/app.js",
"watch": "tsc -w",
"migrate": "npx prisma migrate dev --name init"
},
"dependencies": {
"@prisma/client": "^3.10.0",
"apollo-server": "^3.6.4",
"apollo-server-express": "^3.6.4",
"bcryptjs": "^2.4.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"graphql": "^15.3.0",
"jsonwebtoken": "^8.5.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.7.0",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"zod": "^3.13.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.21",
"nodemon": "^2.0.15",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.6.2"
}
}