-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.56 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
106
107
108
109
110
111
{
"name": "wpgravitybundle",
"version": "1.0.0-alpha.8",
"description": "A component and a hook to simplify your headless WordPress React application using Gravity Forms.",
"author": "@totalityworks",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/TotalityWorks/wpgravitybundle.git"
},
"scripts": {
"prettier": "prettier --write '**/*.{tsx,ts}'",
"lint": "eslint '**/*.{tsx,ts}'",
"lint:fix": "npm run lint -- --fix",
"format": "npm run prettier && npm run lint:fix",
"commit": "cz",
"start": "webpack-dev-server --open --mode=development",
"build": "webpack --mode=production",
"deploy": "webpack --config publish.config.js --mode=production && npm publish",
"deploy:alpha": "webpack --config publish.config.js --mode=production && npm publish --tag alpha",
"deploy:beta": "webpack --config publish.config.js --mode=production && npm publish --tag beta",
"deploy:next": "webpack --config publish.config.js --mode=production && npm publish --tag next"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run format"
]
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"date-fns": "^2.29.3",
"react-google-recaptcha": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-google-recaptcha": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"babel-loader": "^9.1.0",
"commitizen": "^4.2.5",
"commitlint": "^17.2.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"html-react-parser": "^3.0.6",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"feat": {
"description": "A new feature",
"title": "Features"
},
"fix": {
"description": "A bug fix",
"title": "Bug Fixes"
},
"docs": {
"description": "Documentation only changes",
"title": "Documentation"
},
"style": {
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
"title": "Styles"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature",
"title": "Code Refactoring"
},
"test": {
"description": "Adding missing tests or correcting existing tests",
"title": "Tests"
},
"chore": {
"description": "Other changes that don't modify src or test files",
"title": "Chores"
}
}
}
}
}