-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.82 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.82 KB
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
{
"name": "@tag0/react-auth",
"version": "3.3.1",
"description": "Customizable AuthService/AuthProvider and components for react",
"repository": {
"type": "git",
"url": "git+https://github.com/tagZero/react-auth.git"
},
"keywords": [
"auth",
"authn",
"authentication",
"react",
"auth-components",
"react-components",
"auth-library",
"react-auth"
],
"types": "dist/react-auth.d.ts",
"main": "dist/cjs/react-auth.js",
"module": "dist/es/react-auth.js",
"browser": "dist/umd/react-auth.js",
"license": "MIT",
"files": [
"dist",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"test": "jest --config=jest.config.js",
"build": "yarn clean && NODE_ENV=development rollup -c rollup.config.js",
"build:prod": "yarn clean && NODE_ENV=production rollup -c rollup.config.js",
"build:example": "yarn clean && rollup -c rollup.examples.config.js",
"start": "yarn build:example && serve -s dist",
"prepublishOnly": "yarn build:prod",
"watch": "npm-watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-node-resolve": "^13.1.1",
"@rollup/plugin-replace": "^3.0.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"autoprefixer": "^10.4.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.5",
"nodemon": "^3.1.9",
"npm-watch": "^0.11.0",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-test-renderer": "^17.0.2",
"rimraf": "^6.0.1",
"rollup": "^2.62.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^2.0.4",
"serve": "^13.0.2",
"ts-jest": "^27.1.2",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": ">=17.x",
"react-dom": ">=17.x",
"react-router-dom": ">=5.x"
},
"watch": {
"start": {
"extensions": "ts,tsx,js,jsx,json,css,sass,scss",
"patterns": [
"src"
]
}
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^0.3.10"
}
}