forked from alkem-io/client-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 2.18 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
{
"name": "cherrytwist-lib",
"version": "0.4.6",
"description": "Library for interacting with a Cherrytwist server instance",
"author": "Cherrytwist Foundation",
"private": false,
"license": "EUPL-1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"prebuild": "npm run clean",
"clean": "rimraf ./dist",
"format": "prettier --write \"src/**/*.ts\" \"graphql/**/*.graphql\"",
"codegen": "graphql-codegen --config codegen.yml",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"lint:fix": "tsc --noEmit && eslint src/**/*.ts{,x} --fix",
"populate": "ts-node-dev src/populate.ts",
"test-connection": "ts-node-dev src/test-connection.ts",
"get-access-token": "ts-node-dev src/get.token.ropc.ts",
"postcodegen": "prettier --write src/graphql*.ts src/types/*.ts ",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cherrytwist/Client.Lib.git"
},
"bugs": {
"url": "https://github.com/cherrytwist/Client.Lib/issues"
},
"homepage": "https://github.com/cherrytwist/Client.Lib#readme",
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "1.19.3",
"@graphql-codegen/import-types-preset": "^1.18.1",
"@graphql-codegen/typed-document-node": "^1.18.1",
"@graphql-codegen/typescript": "1.18.1",
"@graphql-codegen/typescript-graphql-request": "^2.0.3",
"@graphql-codegen/typescript-operations": "1.17.12",
"@types/node": "^14.14.10",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"adal-node": "^0.2.1",
"axios": "^0.21.0",
"dotenv": "^8.2.0",
"graphql": "^15.4.0",
"graphql-request": "^3.3.0",
"graphql-tag": "^2.11.0",
"jsonpath": "^1.0.2",
"winston": "^3.3.3"
},
"files": [
"dist/**/*"
]
}