This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.61 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
{
"name": "@fusionauth/react-sdk",
"version": "1.0.6",
"description": "FusionAuth solves the problem of building essential security without adding risk or distracting from your primary application",
"scripts": {
"webpack": "webpack --mode production",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"prettier": "prettier --check .",
"type-check": "tsc",
"prettier:fix": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FusionAuth/fusionauth-react-sdk.git"
},
"author": "FusionAuth",
"license": "Apache",
"bugs": {
"url": "https://github.com/FusionAuth/fusionauth-react-sdk/issues"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=10.0.0"
},
"homepage": "https://github.com/FusionAuth/fusionauth-react-sdk#readme",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.1.1",
"@types/js-cookie": "^3.0.2",
"@types/react": "^18.0.21",
"@types/text-encoding": "^0.0.36",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-jest": "^29.1.2",
"babel-loader": "^9.1.0",
"babel-preset-react-app": "^10.0.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.2",
"es6-promise": "^4.2.8",
"eslint": "^8.24.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": ">=6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"jest-watch-typeahead": "^2.2.0",
"lint-staged": ">=10",
"prettier": "2.7.1",
"react-app-polyfill": "^3.0.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"text-encoding": "^0.7.0",
"ts-loader": "^9.4.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"module": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"classnames": "^2.3.2",
"js-cookie": "^3.0.1"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,css,md,ts,tsx,yml}": "prettier --write"
}
}