-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
47
{
"name": "hackernews-typescript-chapterwise",
"version": "1.0.0",
"description": "",
"engines": {
"node": "16.14.0",
"npm": "8.3.1"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --transpile-only --no-notify --exit-child src/index.ts",
"generate": "ts-node --transpile-only src/schema",
"prettier-format": "prettier 'src/**/*.ts' --write",
"migrate:deploy": "prisma migrate deploy",
"build": "prisma generate && npm run generate && tsc",
"start": "node dist/src/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "~2.4.0",
"@types/express": "^4.17.13",
"@types/express-graphql": "^0.9.0",
"@types/jsonwebtoken": "~8.5.0",
"prettier": "^2.4.1",
"prisma": "^3.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"@prisma/client": "^3.5.0",
"apollo-server": "^3.5.0",
"bcryptjs": "~2.4.0",
"graphql": "^15.7.2",
"graphql-scalars": "^1.14.1",
"jsonwebtoken": "~8.5.0",
"nexus": "^1.1.0"
},
"prettier": {
"semi": true,
"tabWidth": 4,
"trailingComma": "all",
"printWidth": 80
}
}