-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
86 lines (86 loc) · 2.19 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
{
"name": "strapi-generate-types",
"version": "1.0.0",
"description": "CLI to generate types based on your Strapi API content types",
"keywords": [
"strapi",
"cli",
"graphqL",
"typescript"
],
"homepage": "https://github.com/Stun3R/strapi-generate-types#readme",
"bugs": {
"url": "https://github.com/Stun3R/strapi-generate-types/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:Stun3R/strapi-generate-types.git"
},
"license": "MIT",
"author": {
"name": "Thibaut DAVID",
"email": "thibautdavid@icloud.com",
"url": "https://thibautdavid.com"
},
"maintainers": [
{
"name": "Thibaut DAVID",
"email": "thibautdavid@icloud.com",
"url": "https://thibautdavid.com"
}
],
"bin": {
"strapi-generate-types": "bin/cli.js"
},
"files": [
"bin"
],
"scripts": {
"start": "siroc build --watch",
"build": "siroc build",
"clean": "rm -rf bin models",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"commit": "git-cz",
"release": "dotenv release-it --",
"prepare": "siroc build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@graphql-codegen/core": "2.5.1",
"@graphql-codegen/typescript": "2.4.5",
"@graphql-tools/load": "7.5.2",
"@graphql-tools/url-loader": "7.16.15",
"@types/fs-extra": "9.0.13",
"chalk": "4.1.2",
"commander": "8.3.0",
"enquirer": "2.3.6",
"fs-extra": "10.0.0",
"graphql": "16.6.0"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@release-it/conventional-changelog": "3.3.0",
"@types/commander": "^2.12.2",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"dotenv-cli": "4.1.1",
"eslint": "8.27.0",
"husky": "7.0.4",
"lint-staged": "11.2.6",
"npm-run-all": "4.1.5",
"release-it": "14.12.5",
"siroc": "0.16.0",
"typescript": "4.6.2"
}
}