-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "@headstorm/react-auth",
"version": "1.3.3",
"description": "OAuth2 + OpenID connect client library for React with support for authorization code flow with PKCE",
"main": "dist/react-auth.min.js",
"types": "dist/react-auth.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Headstorm/react-auth.git"
},
"author": "Headstorm",
"license": "MIT",
"scripts": {
"prepack": "npm run rollup",
"rollup": "rollup -c"
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@types/react": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unused-imports": "^1.1.4",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^2.3.3",
"rollup": "^2.56.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": "^17.0.2"
},
"dependencies": {}
}