This repository has been archived by the owner on Apr 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.75 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
{
"name": "@flywire/react-hooks",
"version": "2.4.0",
"description": "A collection of Reacts hooks used in Flywire",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/typings/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "rollup -c",
"build:types": "tsc -p tsconfig.build.json",
"check:format": "npm run prettier -- --list-different",
"check:types": "tsc",
"format": "prettier --write ./src",
"lint": "eslint ./src",
"prebuild": "npm run validate && npm run test:once",
"prettier": "prettier ./src",
"test": "jest --watchAll",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watchAll",
"test:once": "jest",
"validate": "npm run check:types && npm run check:format && npm run lint",
"version": "npm run build && git add -A && git push && git push --tags"
},
"license": "MIT",
"keywords": [
"rect",
"library"
],
"repository": {
"type": "git",
"url": "https://github.com/peertransfer/react-hooks.git"
},
"homepage": "https://github.com/peertransfer/react-hooks.git",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/lodash.isequal": "^4.5.5",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/xregexp": "^4.4.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.2.5",
"jest-watch-typeahead": "^1.0.0",
"lodash.isequal": ">=4.5.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.1",
"rollup": "^2.58.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-externals": "^2.2.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"validate.js": "^0.13.1",
"xregexp": "^5.1.0"
},
"peerDependencies": {
"lodash.isequal": ">=4.5.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"validate.js": ">=0.13.1",
"xregexp": ">=5.1.0"
},
"dependencies": {
"@babel/runtime": "^7.15.4"
}
}