-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1017 Bytes
/
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
{
"name": "@baethon/polaris-form-hook",
"version": "1.2.0",
"description": "Simple form hook for @shopify/polaris",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"prepare": "husky install",
"prepublish": "npx tsc"
},
"keywords": [
"polaris",
"hook",
"react"
],
"author": "Radoslaw Mejer <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@types/react": "^18.2.14",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.6",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.0",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.14",
"husky": "^8.0.3",
"jest": "^29.6.0",
"jest-environment-jsdom": "^29.6.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"react": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"*.ts": "npx prettier --write"
},
"files": [
"./dist"
]
}