-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
77 lines (77 loc) · 1.8 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
{
"name": "@formspree/react",
"version": "2.4.1",
"description": "The React component library for Formspree",
"private": false,
"bugs": {
"url": "https://github.com/formspree/formspree-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/formspree/formspree-react.git"
},
"license": "MIT",
"contributors": [
"Derrick Reimer",
"Cole Krumbholz",
"Ismail Ghallou"
],
"files": [
"dist/**"
],
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --external react --minify",
"dev": "tsup src/index.ts --format esm,cjs --dts --external react --sourcemap",
"clean": "rm -rf dist && rm -rf node_modules",
"lint": "eslint src/*.ts*",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,css,json,md}": [
"npx prettier --write",
"git add"
],
"package.json": [
"npx sort-package-json",
"git add"
]
},
"dependencies": {
"@stripe/react-stripe-js": "^1.7.1",
"@stripe/stripe-js": "^1.35.0"
},
"devDependencies": {
"@formspree/core": "*",
"@types/jest": "^24.0.25",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"babel-jest": "^26.3.0",
"husky": "^3.0.5",
"jest": "^26.4.2",
"lint-staged": "^9.2.5",
"np": "^6.4.0",
"prettier": "^1.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^17.0.2",
"sort-package-json": "^1.22.1",
"tsup": "^6.2.2",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"np": {
"yarn": false
}
}