-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
105 lines (105 loc) · 2.71 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
98
99
100
101
102
103
104
105
{
"name": "gatsby-drupal-webform",
"version": "4.0.0",
"description": "React component for Drupal webforms",
"author": "Santeri Hurnanen <santeri@oikeuttaelaimille.fi>",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "npm run build:lib && npm run build:types",
"lint": "eslint '*/**/*.{js,json,ts,tsx}' --quiet --fix",
"build:lib": "tsc",
"build:types": "tsc --declaration --emitDeclarationOnly",
"build:watch": "tsc --declaration --watch",
"commit": "git-cz"
},
"keywords": [
"gatsby",
"gatsby-component",
"react-component",
"drupal"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oikeuttaelaimille/gatsby-drupal-webform.git"
},
"bugs": {
"url": "https://github.com/oikeuttaelaimille/gatsby-drupal-webform/issues"
},
"homepage": "https://github.com/oikeuttaelaimille/gatsby-drupal-webform#readme",
"peerDependencies": {
"axios": ">= 0.19.0"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@testing-library/react": "^11.0.4",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"axios": "^0.21.1",
"babel-jest": "^26.3.0",
"babel-preset-gatsby": "^1.0.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"gatsby": "^3.0.4",
"husky": "^4.2.3",
"jest": "^26.3.0",
"lint-staged": "^10.0.8",
"prettier": "^2.0.5",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"semantic-release": "^17.0.4",
"ts-jest": "^26.1.4",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"src/**/*.ts{x,}": [
"eslint ./src --fix"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"prettier": {
"semi": false,
"tabWidth": 2,
"useTabs": true,
"printWidth": 140,
"singleQuote": true,
"trailingComma": "none"
}
}