-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2 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
{
"name": "airqmon-api",
"description": "Data aggregation service and API for the Airqmon app.",
"version": "0.3.0",
"main": "out/src/main.js",
"engines": {
"node": ">=14.15 <15"
},
"license": "Apache-2.0",
"author": "Jakub Synowiec <[email protected]>",
"scripts": {
"clean": "rimraf out",
"prebuild": "yarn clean",
"build": "yarn build:release",
"build:dev": "tsc -p tsconfig.json",
"prebuild:release": "yarn lint",
"build:release": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --ext .ts",
"fmt": "prettier -c .prettierrc 'src/**/*.ts' --write",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/jsynowiec/airqmon-api"
},
"dependencies": {
"agenda": "~4.2.1",
"apollo-datasource-rest": "~0.3.2",
"apollo-server-express": "~2.4.8",
"convict": "~4.4.1",
"express": "~4.16.0",
"graphql": "~14.1.1",
"module-alias": "~2.2.2",
"mongodb": "~3.6.12",
"ngeohash": "~0.6.0",
"tslib": "~1.9.3",
"winston": "~3.2.1"
},
"devDependencies": {
"@types/convict": "~4.2.1",
"@types/express": "~4.16.0",
"@types/graphql": "~14.0.7",
"@types/jest": "~27.4.0",
"@types/mongodb": "~3.6.20",
"@types/ngeohash": "~0.6.4",
"@types/node": "~14.14.31",
"@typescript-eslint/eslint-plugin": "~5.14.0",
"@typescript-eslint/parser": "~5.14.0",
"eslint": "~8.11.0",
"eslint-config-prettier": "~8.5.0",
"jest": "~27.5.1",
"prettier": "~2.5.1",
"rimraf": "~2.6.2",
"ts-jest": "~27.1.3",
"typescript": "~4.4.0"
},
"_moduleAliases": {
"@root": "out",
"common": "out/src/common",
"data-store": "out/src/data-store",
"data-provider": "out/src/data-provider",
"gql": "out/src/gql",
"server-middleware": "out/src/server-middleware/"
},
"volta": {
"node": "14.19.0",
"yarn": "1.22.4"
}
}