-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.43 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
{
"name": "react-rb-auth",
"version": "4.0.1",
"description": "Simple Role Based Auth for react projects",
"author": "TachyonVFX, LDA <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"repository": {
"type": "git",
"url": "[email protected]:nmpribeiro/react-role-based-auth.git"
},
"bugs": {
"url": "https://github.com/nmpribeiro/react-role-based-auth.git"
},
"homepage": "https://github.com/nmpribeiro/react-role-based-auth/blob/master/README.md",
"keywords": [
"react-native",
"ios",
"web",
"android",
"typescript",
"role",
"auth",
"authentication",
"boilerplate"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start-lib": "microbundle-crl watch --no-compress --format modern,cjs",
"start": "yarn prepare && yarn predeploy && yarn deploy",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": ">= 17"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/node-fetch": "^2.6.1",
"@types/react": "^16",
"@types/react-dom": "^16",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-react": "^10",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^3.2.3",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"react-scripts": "^5.0.0",
"typescript": "^4.6.3"
},
"dependencies": {
"react": "^17",
"react-dom": "^17"
},
"files": [
"dist"
]
}