-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.77 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"dependencies": {
"@google-cloud/storage": "3.3.1",
"@prisma/photon": "2.0.0-preview017.2",
"@sentry/node": "5.10.2",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.8.0",
"@types/request-promise": "^4.1.45",
"apollo-server": "2.9.8",
"bcrypt": "3.0.6",
"date-fns": "2.7.0",
"dotenv": "8.2.0",
"env-cmd": "9.0.3",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-graphql": "3.0.3",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.0",
"graphql-middleware": "4.0.1",
"graphql-middleware-sentry": "3.2.1",
"i18n": "0.8.4",
"jsonwebtoken": "8.5.1",
"nexus": "0.12.0-rc.5",
"quill-delta": "4.2.1",
"request-promise": "^4.2.5",
"stream": "0.0.2",
"ts-node": "8.5.4",
"uuid": "3.3.3",
"yup": "0.27.0",
"@types/bcrypt": "3.0.0",
"@types/dotenv": "6.1.1",
"@types/faker": "4.1.7",
"@types/i18n": "0.8.6",
"@types/jsonwebtoken": "8.3.5",
"@types/node": "12.12.9",
"@types/request": "2.48.3",
"@types/uuid": "3.4.6",
"@types/yup": "0.26.24",
"faker": "4.1.0",
"husky": "3.0.9",
"lint-staged": "9.4.3",
"prettier": "1.19.1",
"prisma2": "2.0.0-preview017.2",
"request": "2.88.0",
"ts-node-dev": "1.0.0-pre.44",
"typescript": "3.7.3"
},
"devDependencies": {},
"engines": {
"node": "v12.16.1",
"npm": "6.13.4",
"yarn": "1.22.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"lint-staged": {
"*.ts": [
"eslint . --ext .ts --fix",
"prettier --write",
"git add"
]
},
"name": "cogito-backend",
"scripts": {
"build": "yarn lint && yarn tsc",
"debug": "yarn build && yarn watch:debug",
"dev": "prisma2 dev",
"studio": "prisma2 studio",
"format": "prettier --write './src/**/*.ts'",
"generate": "yarn generate:prisma",
"generate:prisma": "prisma2 generate",
"generate:nexus": "ts-node --transpile-only src/schema",
"lift": "prisma2 lift",
"lint": "eslint \"**/*.{js,ts}\" --quiet --fix",
"postinstall": "yarn generate:prisma",
"seed": "ts-node prisma/seed.ts",
"serve": "node dist/src/server.js",
"serve:debug": "nodemon --inspect dist/src/index.js",
"start": "ts-node-dev --no-notify --respawn --transpileOnly ./src/server.ts",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn run watch:ts\" \"yarn run watch:node\"",
"watch:debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn run watch:ts\" \"yarn run serve:debug\"",
"watch:node": "nodemon dist/src/index.js",
"watch:ts": "tsc -w"
},
"version": "1.0.0"
}