-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "talq-api",
"description": "The API for Talq built with Prisma and graphql-yoga",
"author": "Joe Alden <[email protected]> (joealden.com)",
"version": "0.1.0",
"license": "MIT",
"private": true,
"homepage": "https://github.com/joealden/talq-api",
"repository": {
"type": "git",
"url": "git+https://github.com/joealden/talq-api.git"
},
"scripts": {
"clean": "./scripts/clean.sh",
"dev": "nodemon -e ts,graphql -x ts-node -r dotenv/config src/index.ts",
"build": "./scripts/buildClean.sh && tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@joealden/graphql-yoga": "^1.16.9",
"bcryptjs": "^2.4.3",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"graphql": "14.0.2",
"graphql-tag": "^2.10.0",
"jsonwebtoken": "^8.4.0",
"prisma-binding": "^2.2.12",
"validator": "^10.10.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie": "^0.3.1",
"@types/cookie-parser": "^1.4.1",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/jsonwebtoken": "^8.3.0",
"@types/validator": "^10.9.0",
"dotenv": "^6.2.0",
"graphql-cli": "^3.0.4",
"nodemon": "^1.18.9",
"now": "^13.0.0",
"prisma": "^1.23.4",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
}
}