-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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": "sager",
"version": "1.0.0",
"description": "Sager Commerce",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"dev": "nodemon dist/index.js",
"start": "node dist/index.js",
"start2": "ts-node src/index.ts",
"seed": "ts-node prisma/seed.ts",
"dev2": "nodemon --exec ts-node src/index.ts",
"prisma:generate": "prisma generate"
},
"keywords": [],
"author": "Ahmed Abdulrahman <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/AhmedAbdulrahman/sager.git"
},
"bugs": {
"url": "https://github.com/AhmedAbdulrahman/sager/issues"
},
"homepage": "https://github.com/AhmedAbdulrahman/sager#readme",
"devDependencies": {
"prisma": "^3.12.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.24",
"ts-node": "^10.7.0",
"typegraphql-prisma": "^0.20.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@prisma/client": "3.12.0",
"apollo-server-core": "^3.6.7",
"@types/graphql-fields": "^1.3.4",
"apollo-server-express": "^3.6.7",
"express": "^4.17.3",
"graphql": "^15.3.0",
"graphql-fields": "^2.0.3",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
}
}