-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
90 lines (90 loc) · 3.27 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
{
"name": "wcc_gis_backend",
"version": "1.0.0",
"description": "Backend for pet information system",
"repository": {
"type": "git",
"url": "https://github.com/pets-oss/pets-back"
},
"engines": {
"node": "14.x"
},
"license": "MIT",
"main": "index.js",
"private": "true",
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"dev-dockerless": "tsc && ./combine.sh && nodemon -r dotenv/config dist/src/index.js dotenv_config_path=combined.env",
"dev-dockerless-win": "tsc && combine.bat && nodemon -r dotenv/config dist/src/index.js dotenv_config_path=combined.env",
"dev": "tsc && BEARER_TOKEN=`node dist/src/getBearerToken.js --url=$npm_config_url --client_id=$npm_config_client_id --client_secret=$npm_config_client_secret --audience=$npm_config_audience --grant_type=$npm_config_grant_type` nodemon dist/src/index.js && rm src/getBearerToken.js",
"debug": "tsc && nodemon --inspect-brk=0.0.0.0 dist/src/index.js",
"test": "mocha -r ts-node/register test/*.test.ts",
"testAuthenticated": "tsc src/getBearerToken.ts && BEARER_TOKEN=`node src/getBearerToken.js --url=$npm_config_url --client_id=$npm_config_client_id --client_secret=$npm_config_client_secret --audience=$npm_config_audience --grant_type=$npm_config_grant_type` mocha -r ts-node/register test/*.test.ts && rm src/getBearerToken.js",
"testSpecific": "mocha -r ts-node/register",
"check-lint": "eslint src/**/*.ts && eslint test/*test.ts",
"check-type": "tsc --noEmit --skipLibCheck",
"postinstall": "husky install"
},
"author": "Kayak Kaunas",
"dependencies": {
"@graphql-tools/graphql-file-loader": "^6.2.7",
"@graphql-tools/load": "^6.2.5",
"apollo-server-core": "^3.1.2",
"apollo-server-express": "^2.21.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.25.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"graphql": "^15.4.0",
"graphql-tools": "^7.0.2",
"graphql-upload": "^11.0.0",
"jwks-rsa": "^1.12.2",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.20",
"node-input-validator": "^4.4.1",
"pg": "^8.5.1",
"snakecase-keys": "^3.2.1",
"sql-bricks-postgres": "^0.5.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/express-jwt": "^6.0.0",
"@types/graphql": "^14.5.0",
"@types/graphql-upload": "^8.0.4",
"@types/lodash": "^4.14.165",
"@types/minimist": "^1.2.1",
"@types/mocha": "^8.2.0",
"@types/pg": "^7.14.7",
"@types/snakecase-keys": "^2.1.0",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"ajv": "^6.12.6",
"axios": "^0.21.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^5.0.9",
"minimist": "^1.2.5",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"npx": "^10.2.2",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"supertest": "^6.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.0.5",
"uuid": "^8.3.2"
},
"optionalDependencies": {
"fsevents": "^2.3.1"
}
}