forked from supertokens/supertokens-auth-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.88 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "supertokens-auth-react",
"version": "0.15.1",
"description": "ReactJS SDK that provides login functionality with SuperTokens.",
"main": "./index.js",
"devDependencies": {
"@babel/core": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.1",
"@babel/register": "7.12.1",
"@emotion/babel-plugin": "^11.1.0",
"@emotion/eslint-plugin": "^11.1.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"@types/chroma-js": "2.1.3",
"@types/jest": "^26.0.24",
"@types/node": "14.11.10",
"@types/react": "^17.0.14",
"@types/react-router-dom": "5.1.6",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/eslint-plugin-tslint": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"babel-plugin-inline-react-svg": "2.0.1",
"babel-plugin-transform-class-properties": "6.24.1",
"eslint": "^6.8.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-supertokens-auth-react": "file:eslint",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.0.6",
"jsdom": "16.4.0",
"jsdom-global": "3.0.2",
"mocha": "6.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"prop-types": "^15.7.2",
"puppeteer": "5.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"regenerator-runtime": "0.13.7",
"ts-jest": "^27.0.3",
"ts-prune": "^0.8.9",
"tslint": "6.1.3",
"typescript": "3.5.2"
},
"dependencies": {
"@emotion/cache": "^11.1.0",
"@emotion/react": "^11.1.0",
"@emotion/server": "^11.1.0",
"chroma-js": "^2.1.2",
"react-shadow": "^19.0.2",
"supertokens-website": "^8.1.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"scripts": {
"init": "npm i -d && (cd ./test/server && npm i ) && (cd ./examples/for-tests && npm i -d)",
"start": "npm-run-all --parallel front server watch",
"front": "(cd ./examples/for-tests/ && BROWSER=none PORT=3031 npm run start)",
"server": "cd test/server/ && START=true INSTALL_PATH=../../../supertokens-root NODE_PORT=8082 node .",
"test": "npm run test-unit && npm run test-e2e",
"test-e2e": "./test/startTestApp.sh",
"test-unit": "jest -c jest.config.js",
"link-dependencies": "./test/linkDependencies.sh $SRC",
"build-check": "cd lib && npx tsc -p tsconfig.json --noEmit",
"tsc": "cd lib && npx tsc -p tsconfig.json",
"build": "cd lib && rm -rf build && npx tsc -p tsconfig.json",
"watch": "cd lib && npx tsc -w -p tsconfig.json",
"pretty": "npx pretty-quick .",
"build-pretty": "npm run build && npm run pretty",
"lint": "cd lib && eslint ./ts --ext .ts,.tsx",
"prune": "cd lib && ts-prune | grep -vE 'used in module| - default$| - package_version$|getSuperTokensRoutesForReactRouterDom$' && exit 1 || exit 0",
"pretty-check": "npx pretty-quick --check .",
"set-up-hooks": "cp hooks/pre-commit.sh .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supertokens/supertokens-auth-react.git"
},
"keywords": [
"auth",
"authentication",
"authorisation",
"supertokens",
"chrome",
"firefox",
"IE",
"safari"
],
"contributors": [
"rishabhpoddar",
"NkxxkN"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/supertokens/supertokens-auth-react/issues"
},
"homepage": "https://github.com/supertokens/supertokens-auth-react#readme"
}