-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.41 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
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
{
"name": "azure-function-graphql-typescript-starter",
"version": "0.1.0",
"description": "Typescript starter for a HTTP-triggered GraphQL Azure Function.",
"keywords": [
"azure",
"azure-functions",
"graphql",
"apollo-server",
"serverless",
"typescript",
"typeorm",
"typegraphql"
],
"repository": {
"type": "git",
"url": "https://github.com/maximivanov/azure-function-graphql-typescript-starter"
},
"author": "Max Ivanov",
"license": "MIT",
"bugs": {
"url": "https://github.com/maximivanov/azure-function-graphql-typescript-starter/issues"
},
"homepage": "https://github.com/maximivanov/azure-function-graphql-typescript-starter#readme",
"scripts": {
"lint:eslint": "eslint \"**/*.{ts,js,}\" --max-warnings=0",
"lint:tsc": "tsc --noemit",
"lint:markdown": "markdownlint *.md",
"lint": "run-p lint:*",
"audit-security": "audit-ci --config ./audit-ci.json",
"build": "tsc",
"build:production": "npm run prestart && npm prune --production",
"watch": "tsc --w",
"prestart": "npm run build && func extensions install",
"start:host": "func start",
"start": "npm-run-all --parallel start:host watch",
"test": "DB_USERNAME=azgraphql_test DB_PASSWORD=azgraphql_test DB_DATABASE=azgraphql_test jest --runInBand --verbose",
"migrations:generate": "ts-node ./node_modules/typeorm/cli.js migration:generate -n",
"migrations:run": "ts-node ./node_modules/typeorm/cli.js migration:run"
},
"devDependencies": {
"@azure/functions": "^1.2.2",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.2",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"audit-ci": "^3.1.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"markdownlint-cli": "^0.24.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"stub-azure-function-context": "^2.0.0-alpha.4",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"apollo-server-azure-functions": "^2.19.0",
"class-validator": "^0.12.2",
"dotenv": "^8.2.0",
"graphql": "^15.4.0",
"node-fetch": "^2.6.1",
"pg": "^8.4.2",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.0",
"typeorm": "^0.2.28",
"typeorm-naming-strategies": "^2.0.0"
}
}