Skip to content

Commit 2b67994

Browse files
committed
Initial commit
0 parents  commit 2b67994

File tree

2 files changed

+53
-0
lines changed

2 files changed

+53
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
dist
3+
.DS_Store

package.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"name": "@warrantdev/react-warrant-js",
3+
"version": "0.0.1",
4+
"description": "React components for Warrant",
5+
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
7+
"files": [
8+
"/dist/**/*",
9+
"README.md"
10+
],
11+
"scripts": {
12+
"build": "webpack --mode production --config webpack.config.js",
13+
"test": "echo \"Error: no test specified\" && exit 1"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/warrant-dev/react-warrant-js.git"
18+
},
19+
"keywords": [
20+
"warrant",
21+
"authorization",
22+
"rbac",
23+
"role based access control",
24+
"access control",
25+
"react"
26+
],
27+
"author": "Karan Kajla & Aditya Kajla",
28+
"license": "MIT",
29+
"bugs": {
30+
"url": "https://github.com/warrant-dev/react-warrant-js/issues"
31+
},
32+
"homepage": "https://github.com/warrant-dev/react-warrant-js#readme",
33+
"devDependencies": {
34+
"@types/react": "^17.0.11",
35+
"@types/react-dom": "^17.0.8",
36+
"clean-webpack-plugin": "^4.0.0-alpha.0",
37+
"react-dom": "^17.0.2",
38+
"ts-loader": "^9.2.3",
39+
"typescript": "^4.3.4",
40+
"webpack": "^5.40.0",
41+
"webpack-cli": "^4.7.2"
42+
},
43+
"peerDependencies": {
44+
"react": "^17.0.2",
45+
"react-dom": "^17.0.2"
46+
},
47+
"dependencies": {
48+
"axios": "^0.21.1"
49+
}
50+
}

0 commit comments

Comments
 (0)