-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
79 lines (79 loc) · 2.61 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
{
"name": "supertokens-website",
"version": "20.1.5",
"description": "frontend sdk for website to be used for auth solution.",
"main": "index.js",
"dependencies": {
"browser-tabs-lock": "^1.3.0",
"supertokens-js-override": "^0.0.4"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@size-limit/preset-small-lib": "^6.0.3",
"axios": "*",
"estimo": "^2.2.9",
"isomorphic-fetch": "2.2.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.0.5",
"mocha": "6.1.4",
"mocha-jsdom": "2.0.0",
"mocha-junit-reporter": "^2.0.2",
"mocha-multi": "^1.1.6",
"mocha-split-tests": "github:rishabhpoddar/mocha-split-tests",
"mysql": "2.17.1",
"prettier": "^2.8.3",
"puppeteer": "^11.0.0",
"sinon": "^13.0.2",
"size-limit": "^6.0.3",
"typedoc": "^0.22.17",
"typescript": "^4.7.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"scripts": {
"check-circular-dependencies": "npx madge --circular --extensions js ./lib/build/",
"test": "TEST_MODE=testing npx mocha --timeout 500000",
"build-check": "cd lib && npx tsc -p tsconfig.json --noEmit && cd ../test/ && npx tsc -p tsconfig.json --noEmit",
"build": "cd lib && rm -rf build && npx tsc -p tsconfig.json && cd ../ && npm run pack && cd test && npx tsc -p tsconfig.json",
"pretty": "cd lib && npx prettier --write --config .prettierrc \"ts/**/*.ts\" \"build/**/*.js\" \"../test/**/*.js\"",
"build-pretty": "npm run build && npm run pretty",
"pretty-check": "cd lib && npx prettier --check --config .prettierrc \"ts/**/*.ts\" \"build/**/*.js\" \"../test/**/*.js\"",
"set-up-hooks": "cp hooks/pre-commit.sh .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit",
"pack": "webpack --mode=production",
"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-website.git"
},
"keywords": [
"auth",
"authentication",
"authorisation",
"supertokens",
"chrome",
"firefox",
"IE",
"safari"
],
"contributors": [
"bhumilsarvaiya",
"rishabhpoddar",
"porcellus"
],
"size-limit": [
{
"path": "lib/build/bundleEntry.js",
"limit": "22kb"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/supertokens/supertokens-website/issues"
},
"homepage": "https://github.com/supertokens/supertokens-website#readme"
}