-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "wastewater-graphql",
"version": "2.6.0",
"description": "",
"scripts": {
"lint": "eslint .",
"build": "npm run copySchema && tsc",
"watch": "tsc -w",
"copySchema": "npm run clean-dist && copyfiles graphql/schema/*.graphql dist/",
"clean-dist": "rimraf dist/",
"prepare": "npm run build",
"prestart": "npm run prepare",
"start": "func start",
"docs": "node dist/graphql/generate_auth_docs.js",
"test": "echo \"No tests yet...\""
},
"dependencies": {
"@apollo/server": "^4.9.3",
"@as-integrations/azure-functions": "^0.1.3",
"@nic-jennings/sql-datasource": "^0.0.7",
"@tediousjs/connection-string": "^0.4.1",
"copyfiles": "^2.4.1",
"dataloader": "^2.1.0",
"dotenv": "^16.0.3",
"graphql": "^16.8.1",
"graphql-scalars": "^1.20.0",
"knex": "^2.4.0",
"rimraf": "^5.0.5",
"tedious": "^18.2.0",
"typescript": "^4.0.0"
},
"devDependencies": {
"@azure/functions": "^3.5.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"azure-functions-core-tools": "^4.x",
"diagrams": "^0.27.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1"
}
}