This repository has been archived by the owner on Jan 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "things-map-server",
"version": "1.0.0",
"author": "Nenad Filipovic",
"license": "GPL-3.0",
"description": "Backend for things-map application",
"main": "src/index.js",
"scripts": {
"postinstall": "husky install",
"test:local": "jest",
"test:ci": "jest --coverage",
"test": "is-ci test:ci test:local",
"test:e2e:local": "",
"test:e2e:ci": "",
"test:e2e": "is-ci test:e2e:ci test:e2e:local",
"lint": "eslint --ignore-path .gitignore .",
"schema:lint": "graphql-schema-linter",
"format": "prettier --ignore-path .gitignore --write .",
"typecheck": "tsc --noEmit",
"validate": "run-p lint schema:lint format typecheck",
"setup": "knex migrate:latest && knex seed:run",
"generate": "graphql-codegen",
"dev:client": "cd client && npx next dev",
"dev:server": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only src",
"dev": "run-p dev:*"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "1.19.4",
"@graphql-codegen/typescript": "1.19.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@graphql-codegen/typescript-react-apollo": "^2.2.1",
"@graphql-codegen/typescript-resolvers": "1.18.0",
"@graphql-eslint/eslint-plugin": "^0.6.0",
"@graphql-tools/load-files": "^6.2.5",
"@graphql-tools/merge": "^6.2.6",
"@koa/cors": "^3.1.0",
"@types/graphql-iso-date": "^3.4.0",
"@types/jest": "^26.0.19",
"@types/koa-compress": "^4.0.1",
"@types/nodemailer": "^6.4.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"apollo-server-koa": "^2.19.1",
"argon2": "^0.27.1",
"envalid": "^6.0.2",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"graphql": "^15.4.0",
"graphql-config": "^3.2.0",
"graphql-iso-date": "^3.6.1",
"graphql-schema-linter": "^2.0.1",
"husky": "^5.0.6",
"is-ci-cli": "^2.1.2",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.15",
"koa": "^2.13.1",
"koa-compress": "^5.0.1",
"lint-staged": "^10.5.2",
"nodemailer": "^6.4.17",
"npm-run-all": "^4.1.5",
"objection": "^2.2.4",
"pg": "^8.5.1",
"prettier": "^2.2.0",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/nenadfilipovic/things-map.git"
},
"graphql-schema-linter": {
"schemaPaths": [
"src/schema/**/*.graphql"
]
},
"lint-staged": {
"**/*.*": [
"prettier --ignore-unknown --write",
"jest --findRelatedTests"
],
"**/*.{ts,tsx}": [
"eslint"
],
"**/*.graphql": [
"graphql-schema-linter src/schema/**/*.graphql"
]
},
"keywords": [
"iot",
"things",
"map"
],
"bugs": {
"url": "https://github.com/nenadfilipovic/things-map/issues"
},
"homepage": "https://github.com/nenadfilipovic/things-map#readme"
}