-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 2.37 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
{
"name": "@propelauth/react",
"description": "A React library for managing authentication, backed by PropelAuth",
"repository": {
"type": "git",
"url": "https://github.com/PropelAuth/react"
},
"version": "2.0.26",
"license": "MIT",
"keywords": [
"auth",
"react",
"user"
],
"dependencies": {
"@propelauth/javascript": "^2.0.18",
"hoist-non-react-statics": "^3.3.2",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.00",
"@rollup/plugin-node-resolve": "^11.2.1",
"@testing-library/react": "^12.0.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"babel-loader": "^8.2.2",
"core-js": "^3.11.1",
"eslint": "^8.54.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^27.0.6",
"prettier": "^2.4.1",
"prettier-plugin-organize-imports": "^2.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.46.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"browserslist": [
"> 0.2%",
"not dead"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"lint": "eslint --ext .ts,.tsx .",
"build": "npm run test && npm run lint && npm run build:types && npm run build:js",
"test": "npm run lint && jest --silent",
"prepublishOnly": "npm run build"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts"
}