-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.21 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.21 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
{
"author": "LoginRadius",
"name": "loginradius-react",
"version": "0.2.0",
"main": "build/index.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"files": [
"src",
"build"
],
"description": "A LoginRadius React SDK for implementing authentication in React Application",
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"lint": "pretty-quick --staged && eslint --ext .tsx --ext .ts ./src",
"prepare": "husky install",
"start": "rollup -cw"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loginradius/loginradius-react.git"
},
"keywords": [
"loginradius",
"login",
"Single Page Application authentication",
"SPA authentication",
"react"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/loginradius/loginradius-react/issues"
},
"homepage": "https://github.com/loginradius/loginradius-react#readme",
"peerDependencies": {
"react": "^16.11.0 || ^17",
"react-dom": "^16.11.0 || ^17"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^11.2.3",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.12",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^10.0.0",
"eslint": "^7.27.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"node-sass": "^5.0.0",
"prettier": "2.3.0",
"pretty-quick": "^3.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.36.1",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"sass-loader": "^10.1.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {}
}