-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
57 lines (57 loc) · 1.55 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
{
"name": "qontract-server",
"version": "2.0.0",
"description": "qontract graphql server",
"author": "Red Hat App SREs <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">= 18"
},
"scripts": {
"watch": "rm -rf ./dist && tsc --watch",
"build": "rm -rf ./dist && tsc",
"server": "node ./dist/server.js",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"test": "mocha",
"update-graphql-schema": "scripts/update-graphql-schema.js test/graphql_schema.json $(find test -name '*.data.json')",
"debug": "node --inspect --require ts-node/register src/server.ts"
},
"dependencies": {
"apollo-server-express": "^2.18.0",
"aws-sdk": "^2.1659.0",
"deep-diff": "1.0.2",
"dotenv": "^16.4.5",
"express": "^4.16.4",
"express-prom-bundle": "^6.0.0",
"graphql": "^14.7.0",
"jsonpointer": "^5.0.1",
"prom-client": "^12.0.0",
"winston": "^3.13.1"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/express": "4.16.1",
"@types/graphql": "^14.0.5",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"chai": "^4.4.1",
"chai-http": "^4.4.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.3.0",
"ts-node": "^10.9.2",
"typescript": "^3.2.2"
},
"mocha": {
"require": "ts-node/register",
"extensions": [
"ts"
],
"spec": [
"test/**/*.ts"
]
}
}