-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.14 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": "@alkemio/populator",
"version": "0.13.1",
"author": "Alkemio Foundation",
"private": false,
"license": "EUPL-1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"data",
"populator",
"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",
"populate": "ts-node-dev src/populate.ts",
"populate-default-avatars": "ts-node-dev src/populate-default-avatars.ts",
"populate-context": "ts-node-dev src/populate-context.ts",
"populate-organizations": "ts-node-dev src/populate-organizations.ts",
"start": "npm run populate",
"prepublishOnly": "npm run build",
"codegen": "graphql-codegen --config codegen.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alkem-io/populator.git"
},
"bugs": {
"url": "https://github.com/alkem-io/populator/issues"
},
"homepage": "https://github.com/alkem-io/populator#readme",
"devDependencies": {
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@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",
"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",
"tsconfig-paths": "^4.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",
"dotenv": "^8.2.0",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"typescript": "^4.1.0",
"winston": "^3.3.3",
"xlsx": "^0.16.9"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=16.15.0",
"npm": ">=8.5.5"
}
}