-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
61 lines (61 loc) · 2.08 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
{
"name": "supertokens-react-native",
"version": "5.1.3",
"description": "React Native SDK for SuperTokens",
"main": "index.js",
"scripts": {
"build-check": "cd lib && npx tsc -p tsconfig.json --skipLibCheck --noEmit",
"build": "cd lib && npx tsc -p tsconfig.json --skipLibCheck && cd ../ && cd test/playground && npx tsc -p tsconfig.json",
"pretty": "npx prettier --write --config .prettierrc \"lib/ts/**/*.ts\" \"lib/build/**/*.js\" \"TestingApp/**/*.js\" \"examples/**/*.js\"",
"build-pretty": "npm run build && npm run pretty",
"pretty-check": "npx prettier --check --config .prettierrc \"lib/ts/**/*.ts\" \"lib/build/**/*.js\" \"TestingApp/**/*.js\" \"examples/**/*.js\"",
"set-up-hooks": "cp hooks/pre-commit.sh .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"build-docs": "rm -rf ./docs && npx typedoc --out ./docs --tsconfig ./lib/tsconfig.json ./lib/ts/index.ts",
"size": "size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supertokens/supertokens-react-native.git"
},
"keywords": [
"react-native",
"authentication",
"authorisation",
"supertokens",
"ios",
"android"
],
"author": "rishabhpoddar",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/supertokens/supertokens-react-native/issues"
},
"homepage": "https://github.com/supertokens/supertokens-react-native#readme",
"peerDependencies": {
"axios": "*",
"react-native": ">=0.61.5 <1.0.x",
"@react-native-async-storage/async-storage": ">=1.13.0 <2.0.x"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "^1.13.0",
"@size-limit/preset-small-lib": "^6.0.4",
"@types/base-64": "^1.0.0",
"@types/react-native": "0.62.0",
"axios": "*",
"prettier": "1.18.2",
"size-limit": "^6.0.4",
"typescript": "3.8.3",
"typedoc": "^0.22.5"
},
"dependencies": {
"base-64": "^1.0.0",
"react-native-url-polyfill": "^1.3.0",
"supertokens-js-override": "^0.0.4"
},
"size-limit": [
{
"path": "lib/build/index.js",
"limit": "28kb"
}
]
}