-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 4.01 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
{
"name": "@alkemio/cli",
"version": "0.8.0",
"author": "Alkemio Foundation",
"private": false,
"license": "EUPL-1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"data",
"cli",
"alkemio"
],
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"prebuild": "npm run clean",
"clean": "rimraf ./dist",
"format": "prettier --write src/**/*.ts",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"lint:fix": "tsc --noEmit && eslint src/**/*.ts{,x} --fix",
"nodemon": "nodemon",
"delete-organization": "ts-node-dev src/delete-organization.ts",
"remove-user-from-organizations": "ts-node-dev src/remove-user-from-organizations.ts",
"authorization-reset-platform": "ts-node-dev src/authorization-reset-platform.ts",
"authorization-reset-with-config": "ts-node-dev src/authorization-reset-all.ts true",
"authorization-reset-all": "ts-node-dev src/authorization-reset-all.ts",
"authorization-reset-all-users": "ts-node-dev src/authorization-reset-all-users.ts",
"authorization-reset-all-accounts": "ts-node-dev src/authorization-reset-all-accounts.ts",
"authorization-reset-all-organizations": "ts-node-dev src/authorization-reset-all-organizations.ts",
"authorization-detect-orphaned-credentials-from-users": "ts-node-dev src/orphaned-credentials/authorization-detect-orphaned-credentials-from-users.ts",
"migration-add-default-discussion-callouts": "ts-node-dev src/migration/add-default-discussion-callouts.ts",
"update-application-forms-on-space-nl": "ts-node-dev src/scripts/application-form-dutch.ts",
"convert-challenge-callout": "ts-node-dev src/scripts/convert-challenge-callout.ts",
"spaces-info-excel": "ts-node-dev src/spaces-info-excel/spaces-info-excel.ts",
"account-resources-info-excel": "ts-node-dev src/account-resources-info-excel/account-resources-info-excel.ts",
"account-admins-info-excel": "ts-node-dev src/account-space-admins/account-admins-info-excel.ts",
"users-info-excel": "ts-node-dev src/users-info-excel/users-info-excel.ts",
"users-avatar-excel": "ts-node-dev src/users-avatar/users-avatar-excel.ts",
"prepublishOnly": "npm run build",
"codegen": "graphql-codegen --config codegen.yml",
"digital-twin-demo": "ts-node-dev src/digital-twin-demo/digital-twin-demo.ts",
"prune-orphans-old": "ts-node-dev src/prune-orphan-data/prune-orphan-data.ts",
"prune-orphans-v2": "ts-node-dev src/prune-orphan-data/prune-orphan-data-v2.ts",
"orphaned-auth-policy": "ts-node-dev src/orphaned-policy/orphaned-auth-policy.ts",
"search-ingestion": "ts-node-dev src/search-ingestion/search-ingestion.ts",
"create-accounts": "ts-node-dev src/create-n-accounts.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alkem-io/cli.git"
},
"bugs": {
"url": "https://github.com/alkem-io/cli/issues"
},
"homepage": "https://github.com/alkem-io/pcli#readme",
"devDependencies": {
"@graphql-codegen/add": "^3.2.1",
"@graphql-codegen/cli": "2.11.8",
"@graphql-codegen/typescript": "2.7.3",
"@graphql-codegen/typescript-resolvers": "2.7.3",
"@types/node": "^14.6.0",
"@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",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@alkemio/client-lib": "^0.32.0",
"@graphql-codegen/typescript-graphql-request": "^4.5.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@types/graphql-upload": "^8.0.11",
"axios": "^1.7.4",
"dotenv": "^16.0.1",
"graphql": "^16.6.0",
"graphql-upload": "^16.0.1",
"node-yaml-config": "^1.0.0",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"typeorm": "0.3.0",
"typescript": "^4.7.4",
"winston": "^3.8.1",
"xlsx": "^0.18.5"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=20.9.0",
"npm": ">=10"
},
"volta": {
"node": "20.15.1"
}
}